我正在使用grunt-ember-templates预编译我的模板。正如预期的那样,该工具将我的模板放入Ember.TEMPLATES
数组中。我正在微调grunt-ember-templates
. 为此,我想知道Ember.TEMPLATES
数组中的预期键是什么。假设我有这个模板:
<script type="text/x-handlebars" data-template-name="phones/index">
....
</script>
目前我在一个名为 的文件中有这个模板app/templates/phones_index.hbs
,grunt-ember-templates
并将预编译的模板放入Ember.TEMPLATES["app/templates/phones_index"]
,但这是错误的。
预期的密钥是data-template-name="phones/index"
什么?