我有一条用于创建新文档、复制现有文档的路线。
App.DocumentsNewRoute = Ember.Route.extend({
model: function (params) {
this.modelParams = params; // save params for reference
return App.Document.createRecord();
},
setupController: function (controller, model) {
// use the params to get our reference document
var documentModel = App.Document.find(this.modelParams.document_id);
documentModel.one('didLoad', function () {
// once loaded, make a serialized copy
var documentObj = documentModel.serialize();
// and set the properties to our empty record
model.setProperties(documentObj);
console.log('didLoad');
});
}
});
我在我的视图中添加了一些日志。
App.DocumentView = Ember.View.extend({
init: function () {
this._super();
// fires before the didLoad in the router
console.log('init view');
},
willInsertElement: function () {
// fires before the didLoad in the router
console.log('insert elem');
}
});
这是我的模板
{{#if model.isLoaded }}
{{ view App.DocumentView templateNameBinding="model.slug" class="document portrait" }}
{{ else }}
Loading...
{{/if}}
问题似乎是我的模型isLoaded
,但在渲染我的模板时没有填充,所以此时 templateNameBinding 不存在,并且在填充数据时似乎没有更新。
我应该在我的模板中使用 model.isLoaded 以外的东西,还是应该强制重新渲染我的模板,如果是,如何以及在哪里?谢谢!