具有最新角度流星订阅调用的回调函数

时间:2016-01-04 20:05:44

标签: meteor angular-meteor

尝试使用最新 meteor this.subscribe('users'),我想知道如何附加功能或具有回调功能

以前我们可以使用当时的回调函数,我们如何才能在最新的角度流星中实现这一目标?

感谢任何形式的帮助或链接。

1 个答案:

答案 0 :(得分:0)

this.subscribe('users', () => {
    return [foo, bar]; // publication arguments
}, {
    onReady: (res) => {
        // success callback
    },
    onError: (err) => {
        // error callback
    }
});