0

我有一个在 REST 的后台使用 Node 的演示 Backbone 应用程序。在其中一个 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(),

        });
    }
4

1 回答 1

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(),

        });
    }
于 2013-10-29T16:40:52.490 回答