1

ドキュメントがコレクションから削除されたときに購読者に通知しようとしています。observeChanges の削除された関数が呼び出されたときに this.removed(collection, id) を使用します。

Meteor.publish('tasks_listsPub', function(sUrl){
    ...
    var self = this;
    ocTasksLists.find().observeChanges({
        added: function (sId, oFields) {
            console.log('added:'+sId);
            self.added('tasks_lists', sId, oFields);
        },
        removed: function (sId) {
            console.log('removed:'+sId);
            self.removed('tasks_lists', sId); //throws a exception but sometimes it works in the browser
        },
        changed: function(sId, oFields){
            console.log('changed:'+sId);
            self.changed('tasks_lists', sId, oFields);
        }
    });
    var cVisibleTasksLists = ocTasksLists.find({_id: {$in: oWs.tasks_lists}});
    return cVisibleTasksLists;
});

問題は、サーバーが例外をスローすることです。

removed:K8BBys7WRH4tTQRBg
Exception in queued task: Error: Removed nonexistent document K8BBys7WRH4tTQRBg
at _.extend.removed (app/packages/livedata/livedata_server.js:181:17)

また、他のブラウザでは、削除されたドキュメントが削除されないことがあります。解決策はありますか?どうも

4

1 に答える 1