我正在基于一个带有骨干本地存储插件的骨干示例创建一个小型应用程序。

当保存新模型的数据时,总是出现错误“必须指定“ url”属性或函数”

阅读了几个类似的主题之后,我仍然找不到原因。

模型:

directory.models.EmployeeCollection = Backbone.Collection.extend({

    localStorage: new Backbone.LocalStorage("EmployeeCollection"),

    model: directory.models.Employee,

    store: directory.utils.store,

    findByName: function(key) {
        this.reset(this.store.findByName(key));
    }

});


风景:

directory.views.newEmployeeView = Backbone.View.extend({

    tagName: "div",

    initialize: function() {
        this.template = _.template(directory.utils.templateLoader.get('new-employee'));
    },

    events: {
        "click .save": "saveEmployee"
    },

    render: function(eventName) {
        $(this.el).html(this.template(this.model.toJSON()));
        return this;
    },

    saveEmployee: function(event){
        this.model.set({
            firstName:$('#newFirstName').val(),
            lastName:$('#newLastName').val(),
            title:$('#newTitle').val(),
            city:$('#newCity').val(),
            officePhone:$('#newOfficePhone').val(),
            cellPhone:$('#newCellPhone').val(),
            email:$('#newEmail').val()
        });

        this.model.save();
        window.history.back();

        return false;
    }
});

最佳答案

我认为您需要新模型成为集合的成员,然后再尝试保留它。尝试创建集合的新实例,并将其传递给视图(可能在路由器中),如下所示:

new newEmployeeView({ collection: new EmployeeCollection() });


在您的视图中,您可以使用Backbone的create便捷方法(请参见docs)将模型的新实例添加到集合中并保留它:

this.collection.create({
    firstName:$('#newFirstName').val(),
    lastName:$('#newLastName').val(),
    title:$('#newTitle').val(),
    city:$('#newCity').val(),
    officePhone:$('#newOfficePhone').val(),
    cellPhone:$('#newCellPhone').val(),
    email:$('#newEmail').val()
});

09-21 00:06