我是 MongoDB 和 Backbone 的新手,所以我尝试理解它们,但这很难。我有一个很大的问题:我无法理解如何操作 Backbone.Model 中的属性以仅在视图中使用我需要的。更具体 - 我有一个模型:
window.User = Backbone.Model.extend({
urlRoot:"/user",
idAttribute: "_id",
defaults: {
_id: null,
name: "",
email: "foo@bar.baz"
}
});
window.UserCollection = Backbone.Collection.extend({
model: User,
url: "user/:id"
});
我有一个观点:
beforeSave: function(){
var self = this;
var check = this.model.validateAll();
if (check.isValid === false) {
utils.displayValidationErrors(check.messages);
return false;
}
this.saveUser();
return false;
},
saveUser: function(){
var self = this;
console.log('before save');
this.model.save(null, {
success: function(model){
self.render();
app.navigate('user/' + model.id, false);
utils.showAlert('Success!', 'User saved successfully', 'alert-success');
},
error: function(){
utils.showAlert('Error', 'An error occurred while trying to save this item', 'alert-error');
}
});
}
我必须使用来自除“_id”之外的任何字段的数据的“put”方法,所以它必须是这样的:
{"name": "Foo", "email": "foo@bar.baz"}
但每次,并不取决于我做什么它发送
{**"_id": "5083e4a7f4c0c4e270000001"**, "name": "Foo", "email": "foo@bar.baz"}
来自服务器的这个错误:
MongoError:无法更改文档旧的_id:{_id:ObjectId('5083e4a7f4c0c4e270000001'),名称:“Foo”}新:{_id:“5083e4a7f4c0c4e270000001”,名称:“Bar”,电子邮件:“foo@bar.baz” }
Github 链接:https ://github.com/pruntoff/habo
提前致谢!