ember-index addを使用してindex.htmlではなくindex.jspファイルを生成しようとしています。 ember-index
アドオンをインストールし、必要な変更も加えました。Ember-indexがindex.jspを生成していません
私config/environment.js
ファイルが
/* eslint-env node */
'use strict';
module.exports = function(environment) {
let ENV = {
modulePrefix: 'user-profile',
output: 'index.jsp',
environment,
rootURL: '/',
locationType: 'hash',
EmberENV: {
FEATURES: {
// Here you can enable experimental features on an ember canary build
// e.g. 'with-controller': true
},
EXTEND_PROTOTYPES: {
// Prevent Ember Data from overriding Date.parse.
Date: false
}
},
'ember-index': {
output: 'index.jsp',
content: {
file: 'example.txt',
includeInOutput: true,
includeInIndexHtml: false
}
},
APP: {
// Here you can pass flags/options to your application instance
// when it is created
}
};
return ENV;
};
はまた、私example.txt
ファイルが
<meta content="Example">
<h2>html to jsp</h2>
、最終的に私のindex.html
に、私は以下を追加しているように見えるの下には今
{{content-for 'ember-index'}}
しかし、スニペットのように見えます私はember buとemberプロジェクトを構築しようとしていますild私のdistフォルダにindex.jsp
ファイルを見ることができません。
:Readmeには、使用するファイルのために、彼らは次のように指定しなければならないことを指定しますそれでは、正しい場所にcontent-forタグを用意しても、index.jspファイルを取得できませんでした。 –
新しいアドバイスを作成して設定を比較することをお勧めします。それでも問題が解決しない場合は、おそらくアドオンの問題を開いてください。私はこれを自分で使ったことはありません。がんばろう! – handlebears