具有最新 angular 流星订阅调用的回调函数
Callback function with latest angular meteor subscribe call
正在尝试使用最新的 meteor 的 this.subscribe('users')
,我想知道如何附加函数或与此一起使用回调函数
以前我们可以使用 then 回调函数,我们如何在最新的 angular meteor 中实现这个?
感谢任何类型的帮助或链接。
this.subscribe('users', () => {
return [foo, bar]; // publication arguments
}, {
onReady: (res) => {
// success callback
},
onError: (err) => {
// error callback
}
});
正在尝试使用最新的 meteor 的 this.subscribe('users')
,我想知道如何附加函数或与此一起使用回调函数
以前我们可以使用 then 回调函数,我们如何在最新的 angular meteor 中实现这个?
感谢任何类型的帮助或链接。
this.subscribe('users', () => {
return [foo, bar]; // publication arguments
}, {
onReady: (res) => {
// success callback
},
onError: (err) => {
// error callback
}
});