我想知道是怎麼開始的backkbone獲取骨幹模型的屬性
從服務器返回的在我的模型我有這個
myApp.Model = Backbone.Model.extend({
urlRoot: '/items',
parse: function(response) {
response.id = response._id;
return response;
}
});
在我看來,我有這樣的一個模型的屬性
initialize: function() {
this.model = new myApp.Model();
this.model.fetch();
},
render: function() {
this.$el.html(this.template(this.model.toJSON()));
return this;
}
這是我在我的模板
<%- this.model.attributes.age %>
出於某種原因,在模板中執行上述操作不會導致任何輸出。
age
是
模板使用從服務器
儘量只''<%= age %>。 'template'函數來自哪裏,下劃線? – numbers1311407
是的,模板是從下劃線,我將編輯我的帖子,以反映, – tawheed