テンプレートentity/_edit_fields.hbs
を部分的な使用として含めるには:
{{partial "entity/edit_fields"}}
もう一度このようなことに行き詰まった場合は、残り火のテストスイートを見てみてください。ほとんどの場合、質問に答えるのに役立つ例があります。部分的にどのように機能するかわからなかったので、答える前に、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.");
});