我正在使用 Ember.js(在 Rails 应用程序中)并在显示表单时得到了重点。我使用了“部分”车把标签,如下所示:
{{partial "entity_edit_fields"}}
Ember 尝试从_entity_edit_fields.hbs
文件中检索模板。但是,我已将所有与实体相关的模板放入单独的目录中。现在,我想告诉 Ember 寻找entity/_edit_fields.hbs
. 我怎样才能做到这一点?
我正在使用 Ember.js(在 Rails 应用程序中)并在显示表单时得到了重点。我使用了“部分”车把标签,如下所示:
{{partial "entity_edit_fields"}}
Ember 尝试从_entity_edit_fields.hbs
文件中检索模板。但是,我已将所有与实体相关的模板放入单独的目录中。现在,我想告诉 Ember 寻找entity/_edit_fields.hbs
. 我怎样才能做到这一点?
要将模板包含entity/_edit_fields.hbs
为部分使用:
{{partial "entity/edit_fields"}}
如果您再次遇到类似问题,请尝试查看 ember 测试套件。几乎总会有一个例子可以帮助回答你的问题。我也不确定部分是如何工作的,所以在回答之前我看了一下handlebars_test.js
test("should render other slash-separated templates using the {{partial}} helper", function() {
Ember.TEMPLATES["child/_subTemplate"] = Ember.Handlebars.compile("sub-template");
view = Ember.View.create({
template: Ember.Handlebars.compile('This {{partial "child/subTemplate"}} is pretty great.')
});
Ember.run(function() {
view.appendTo('#qunit-fixture');
});
equal(Ember.$.trim(view.$().text()), "This sub-template is pretty great.");
});