我正在尝试在 Backbone.Model 中实现某种嵌套集合
为此,我必须覆盖解析服务器响应并将数组包装到集合中的适配器函数,以及在没有任何帮助方法的情况下序列化整个对象的函数。我对第二个有问题。
var Model = Backbone.Model.extend({
urlRoot: "/model",
idAttribute: "_id",
// this wraps the arrays in the server response into a backbone collection
parse: function(resp, xhr) {
$.each(resp, function(key, value) {
if (_.isArray(value)) {
resp[key] = new Backbone.Collection(value);
}
});
return resp;
},
// serializes the data without any helper methods
toJSON: function() {
// clone all attributes
var attributes = _.clone(this.attributes);
// go through each attribute
$.each(attributes, function(key, value) {
// check if we have some nested object with a toJSON method
if (_.has(value, 'toJSON')) {
// execute toJSON and overwrite the value in attributes
attributes[key] = value.toJSON();
}
});
return attributes;
}
});
问题现在出现在 toJSON 的第二部分。由于某些原因
_.has(value, 'toJSON') !== true
不返回真
有人可以告诉我出了什么问题吗?