我在我的Meteor角度項目中使用了[email protected]
包。每當我刷新流星角度的頁面時,Meteor.user()方法返回undefined
Meteor.user()
方法返回當前用戶的詳細信息,但當我刷新頁面時,它返回undefined
。 那麼有什麼辦法可以消除這個錯誤?任何幫助將不勝感激。
Meteor.autorun(function() {
vm.loggedInUser = Meteor.user();
});
它的正常工作,但是當我重新加載頁面返回undefined
Meteor.autorun(function() {
vm.loggedInUser = Meteor.user();
console.log("loggedInUser", vm.loggedInUser); // undefined
});
你提的問題是過於寬泛。您應該添加更多信息和/或代碼,以便我們能夠理解您的問題。 – Styx
我用更多的信息改進了我的問題。它可能會幫助你 –
你的意思是'Tracker.autorun',對吧? – Styx