在您的主干模型中,按照您希望的方式定义解析函数:
Model = Backbone.Model.extend({
parse: function () {
return {
id: this.get("id"),
name: this.get("name")
}
}
});
但是,最好在模型初始化程序中处理和设置数据,如下所示:
Model = Backbone.Model.extend({
initialize: function (attrs) {
try {
//TODO HERE: test for correct values and throw errors
// set object variables here
this.set({
name: attrs.name,
id: attrs.id
});
} catch (e) {
console.log(e);
}
}
});
现在不需要覆盖解析函数。这样你就知道你的模型正在处理的数据是好的,你可以设置它包含的变量。这避免了来自无效数据的许多错误。
数组中的每一项都应该是一个子模型,这就是我上面写的。您的父模型应如下所示:
Model = Backbone.Model.extend({
initialize: function (items) {
this.subModels = [];
items.forEach(function (item) {
this.subModels.push( new SubModel(item) )
});
}
});
或者作为一个集合:
Collection = Backbone.Collection.extend({
model: ItemModel,
});
您将向其传递 response.items