我有一个演示Backbone应用程序,在后台使用Node进行REST。在其中一个Backbone函数中,我从集合中检索模型并显示一个表单来编辑模型,如此
var toEdit = this.menuItems.get(baz);
this.editFormView = new EditForm({model: toEdit});
$('#formdiv2').html(this.editFormView.render().el);
这很好用。模型显示在表单中。在表单视图中,我有一个设置新模型数据的功能,并在提交表单时保存它,但是,当我单击提交时,它创建一个新记录而不是更新表单中显示的记录。
你能从下面的代码中看出为什么会发生这种情况吗?
由于它正在创建一个新记录,app.post方法正在节点后台调用,但它应该是app.put方法。
app.post('/sentences', function (req, res){
var wine = req.body;
console.log('Adding wine: ' + JSON.stringify(wine));
db.collection('english', function(err, collection) {
collection.insert(wine, {safe:true}, function(err, result) {
if (err) {
res.send({'error':'An error has occurred'});
} else {
console.log('Success: ' + JSON.stringify(result[0]));
res.send(result[0]);
}
});
});
})
app.put('/sentences/:id', function(req, res){
var id = req.params.id;
var wine = req.body;
delete wine._id;
console.log('Updating wine: ' + id);
console.log(JSON.stringify(wine));
db.collection('english', function(err, collection) {
collection.update({'_id':new BSON.ObjectID(id)}, wine, {safe:true}, function(err, result) {
if (err) {
console.log('Error updating wine: ' + err);
res.send({'error':'An error has occurred'});
} else {
console.log('' + result + ' document(s) updated');
res.send(wine);
}
});
});
})
这是Backbone模型和集合
var MenuItem = Backbone.Model.extend({
idAttribute: "_id",
// idAttribute: "question",
urlRoot: '/sentences'
});
var MenuItems = Backbone.Collection.extend({
comparator: 'question',
model: MenuItem,
url: '/sentences'
});
这些是表单视图中的保存和设置数据方法。
save: function () {
this.setModelData();
this.model.save(this.model.attributes,
{
success: function (model) {
console.log(model);
// app.views.pippa.menuItems.add(model);
// app.navigate('menu-items/' + model.get('url'), {trigger: true});
}
}
);
},
setModelData: function () {
console.log(this.model);
this.model.set({
name: this.$el.find('input[name="name"]').val(),
category: this.$el.find('input[name="category"]').val(),
_id: null,
url: this.$el.find('input[name="url"]').val(),
imagepath: this.$el.find('input[name="imagepath"]').val(),
uk: this.$el.find('input[name="uk"]').val(),
});
}
答案 0 :(得分:0)
问题是将_id设置为null。只需拿出那条线就行了
setModelData: function () {
console.log(this.model);
this.model.set({
name: this.$el.find('input[name="name"]').val(),
category: this.$el.find('input[name="category"]').val(),
_id: null,
url: this.$el.find('input[name="url"]').val(),
imagepath: this.$el.find('input[name="imagepath"]').val(),
uk: this.$el.find('input[name="uk"]').val(),
});
}