0
我已經看過不少次,Meteor的啓動函數返回一個函數。這是什麼意思?函數返回在哪裏?誰正在使用返回的功能?流星啓動返回函數
Meteor.startup(function() {
Init();
return Tracker.autorun(function() {
const userId = Meteor.userId();
if (!userId) {
//do something
}
});
});