3

我正在尝试在 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

不返回真

有人可以告诉我出了什么问题吗?

4

1 回答 1

4

下划线是has这样做的:

拥有 _.has(object, key)

对象是否包含给定的键?与 相同object.hasOwnProperty(key),但使用对该hasOwnProperty函数的安全引用,以防它被意外覆盖。

但是您value将没有toJSON属性,因为toJSON来自原型(请参阅http://jsfiddle.net/ambiguous/x6577/)。

您应该_(value.toJSON).isFunction()改用:

if(_(value.toJSON).isFunction()) {
    // execute toJSON and overwrite the value in attributes
    attributes[key] = value.toJSON();
}
于 2012-08-14T19:04:53.977 回答