添加模型到集合后自动保存

发布于 2024-12-23 02:31:01 字数 271 浏览 0 评论 0原文

我有一个集合 myCollection,我向其中添加模型,如下所示:

myCollection.add({title: Romeo and Juliette, author: Shakespear});

我现在可以将此添加的模型保存到服务器吗? Backbone Collection 没有 save(),并且我没有对添加的模型的引用来直接调用 save

I have a collection myCollection to which I add models as follows:

myCollection.add({title: Romeo and Juliette, author: Shakespear});

Have can I now save this added model to the server? Backbone Collections do not have a save() and I do not a reference to the added model to call save directly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

看透却不说透 2024-12-30 02:31:01

您可以使用集合上的创建功能来添加模型并将其自动保存到服务器。

myCollection.create({title: Romeo and Juliette, author: Shakespeare});

这是有关创建函数的文档

You can use the create function on the collection to add a model and have it automatically saved to the server.

myCollection.create({title: Romeo and Juliette, author: Shakespeare});

Here's the documentation on the create function.

遗弃M 2024-12-30 02:31:01

您可以将集合的 save 方法绑定到 add 事件:

MyCollection = Backbone.Collection.extend({
    initialize: function(){
        this.bind('add', this.save, this)
    }
    save: function(){
        $.post(this.url, this.toJSON())
    }
})

You could bind the save method of your collection to the add event:

MyCollection = Backbone.Collection.extend({
    initialize: function(){
        this.bind('add', this.save, this)
    }
    save: function(){
        $.post(this.url, this.toJSON())
    }
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文