userId vs Meteor.userId vs Meteor.userId()

时间:2014-11-12 01:51:06

标签: meteor meteor-accounts

我对此代码中的变量userId感到困惑:

Posts.allow({
  insert: function(userId, doc) {
    // only allow posting if you are logged in
    return !! userId;
  }
});

docs解释Meteor.userId返回一个函数,Meteor.userId()返回一个字符串,但我不明白上面userId引用了哪些字符串。

1 个答案:

答案 0 :(得分:2)

深入研究文档,似乎userId只是allow()deny()方法的第一个参数的默认名称。它也可以这样写:

Posts.allow({
  insert: function(theUser, doc) {
    // only allow posting if you are logged in
    return !! theUser;
  }
});