在jQuery
中我们可以在执行GET
操作时提供json。但是我没有在骨干网中看到任何选项来提供像backbone.collection.create或update
collection.fetch({
data: {
ip_id: this.column
},
success: this.constructing
});
这是我现在能想到的
答案 0 :(得分:0)
由于this.column
是json对象,因此需要对其进行字符串化。试试这个
collection.fetch({
data: {
ip_id: JSON.stringify(this.column)
},
success: this.constructing
});