通过JSON对象获取Backbone.Collection

时间:2014-05-17 06:43:54

标签: backbone.js backbone-collections

jQuery中我们可以在执行GET操作时提供json。但是我没有在骨干网中看到任何选项来提供像backbone.collection.create或update

这样的对象
collection.fetch({
    data: {
        ip_id: this.column
    },
    success: this.constructing
});

这是我现在能想到的

1 个答案:

答案 0 :(得分:0)

由于this.column是json对象,因此需要对其进行字符串化。试试这个

collection.fetch({
    data: {
        ip_id: JSON.stringify(this.column)
    },
    success: this.constructing
});