添加模型到集合后自动保存
我有一个集合 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 Collection
s do not have a save()
and I do not a reference to the added model to call save
directly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用集合上的创建功能来添加模型并将其自动保存到服务器。
这是有关创建函数的文档。
You can use the create function on the collection to add a model and have it automatically saved to the server.
Here's the documentation on the create function.
您可以将集合的 save 方法绑定到 add 事件:
You could bind the save method of your collection to the add event: