如何防止收集更新的反应?

时间:2015-10-27 13:09:50

标签: meteor

我想更新文档,但不希望我的所有反应路由重新加载(我使用铁:路由器)。

我不能让所有myCollection.find()游标都没有被动(使用{reactive:false}

Tracker.nonreactive中包装更新似乎不起作用。

在客户端:

Router.route '/spot/:shortName',
    template: 'map'
    onAfterAction: ->
        spot = Spots.findOne({shortName: this.params.shortName}, {reactive: false})
        Session.set('selectedSpot', spot)

在服务器上:

Spots.update(spot._id, {$set: {codeIndex: codeIndex}})

0 个答案:

没有答案