我是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'方法whit数据,所以它必须像:
{"name": "Foo", "email": "foo@bar.baz"}
但每次都不依赖于我做的事情发送
{**"_id": "5083e4a7f4c0c4e270000001"**, "name": "Foo", "email": "foo@bar.baz"}
来自服务器的错误:
MongoError:无法更改旧文档的_id:{_ id:ObjectId('5083e4a7f4c0c4e270000001'),name:“Foo”} new:{_ id: “5083e4a7f4c0c4e270000001”,姓名:“Bar”,电子邮件:“foo@bar.baz”}
Github链接:https://github.com/pruntoff/habo
提前致谢!
答案 0 :(得分:6)
通过查看你的mongo错误,问题不在于mongo,它只是在做它应该做的事情。它有一个ObjectId类型为_id的对象:ObjectId('xxx'),现在你正在尝试将该对象更改为具有String类型的_id(_id:“5083e4a7f4c0c4e270000001”),并且Mongo显然不喜欢。< / p>
所以,问题是:为什么对象首先具有ObjectId类型的id?你是怎么第一次设置它的?如果您使用其他方法来初始化它(我猜服务器端),您应该将id类型设置为String,以便它与来自脚本库的类型相同。如果您希望它保留ObjectId,则需要将来自脚本的String转换为ObjectId,然后再将其保存到Mongo。
HTH。
答案 1 :(得分:5)
MongoDB 创建 _id作为ObjectID,但不检索 _id作为ObjectID。
这种不一致是否是“正确行为”,对于大多数MongoDB用户来说,这肯定是一个令人讨厌的惊喜。
你可以用以下方法修复它:
if ( this._id && ( typeof(this._id) === 'string' ) ) {
log('Fixing id')
this._id = mongodb.ObjectID.createFromHexString(this._id)
}
请参阅MongoDB can't update document because _id is string, not ObjectId