同步模型时:
myModel.save();
或保存整个集合:
Backbone.Collection.prototype.syncCollection = function (options) {
Backbone.sync("create", this, options);
};
myCollection.syncCollection();
我在服务器端使用MongoDB,它存储带有'_id'属性的文档。我在定义模型时设置了id格式:
myModel = Backbone.Model.extend({
idAttribute: '_id' //mongoDB uses _id as identifier
//more stuff here
});
至少,我需要将_id属性放入客户端应用程序中,以便MongoDB文档在创建后能够正确处理。
服务器对此类api调用的响应是什么?我在文档中没有看到任何相关内容。