Backbone.js 没有在模型更改时发布到服务器?为什么?

发布于 2024-12-24 01:39:40 字数 563 浏览 0 评论 0原文

我有以下内容:

// MODEL
NotificationModel = C.BB.Model.extend({
    defaults : {
        read : false
    },
    urlRoot : '/notifications'
});


// COLLECTION
NotificationCollection = C.BB.Collection.extend({
    model: NotificationModel,
    url: '/notifications',
    initialize : function() {
        var me = this;
        me.fetch();
    }
});

稍后在视图中我有:

....

onCollectionAdd : function(m,c,cfg) {
    m.set({read: true},{silent: false});

该集正在更改项目值,但 Backbone 不会将更新发布到服务器。有什么建议吗?谢谢

I have the following:

// MODEL
NotificationModel = C.BB.Model.extend({
    defaults : {
        read : false
    },
    urlRoot : '/notifications'
});


// COLLECTION
NotificationCollection = C.BB.Collection.extend({
    model: NotificationModel,
    url: '/notifications',
    initialize : function() {
        var me = this;
        me.fetch();
    }
});

Later in the view I have:

....

onCollectionAdd : function(m,c,cfg) {
    m.set({read: true},{silent: false});

The set is changing the items value but Backbone is not posting the update to the server. Any suggestions? Thanks

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

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

发布评论

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

评论(2

離殇 2024-12-31 01:39:40

你需要调用m.save(),它会调用相应的方法create()或update()。

set()方法只触发change()事件,后台不保存任何数据

You need to call m.save(), which will call correspondent method create() or update().

Method set() trigger only change() event, which not save any data in backend

就此别过 2024-12-31 01:39:40

您可以将事件绑定到集合来保存它们:

NotificationCollection = C.BB.Collection.extend({
    model: NotificationModel,
    url: '/notifications',
    initialize : function() {
        this.fetch();
        this.bind('change', this.save, this);
    }
});

请注意,还有 Collection。 create 方法将新模型添加到集合中并将集合保存在服务器上。

You could bind an event to the collection to save them:

NotificationCollection = C.BB.Collection.extend({
    model: NotificationModel,
    url: '/notifications',
    initialize : function() {
        this.fetch();
        this.bind('change', this.save, this);
    }
});

Note there is also the Collection.create method wich add a new model to the collection and save the collection on the server.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文