当我做一个

console.log Meteor.user() // on client script, coffeeScript


我可以在标准chrome上找到它,但在所有其他浏览器中却找不到
不确定是否需要做任何事情?

最佳答案

解决方案是使用deps.autorun

Deps.autorun
  if Meteor.user()
    # continue the code here...CoffeeScript


根据他们的文件:


  Deps.autorun允许您运行依赖于反应式的功能
  数据源,如果数据发生更改
  稍后,该功能将重新运行。

09-16 09:47