我有一个带模型的骨干系列。
我使用文件上传插件:
$('#file-areas-fileupload').fileupload({
....
dataType: 'json',
done: function (e, data) {
self.collection.parse(data.result);
}
});
我希望在响应到来时更新集合中的现有模型。但是:
self.collection.parse(data.result);
self.collection.add(data.result);
不工作。是否有更新集合的解决方案或只有fetch
集合......?
答案 0 :(得分:0)
self.collection.set(response.result)
帮助