userId vs Meteor.userId vs Meteor.userId()

Posted

技术标签:

【中文标题】userId vs Meteor.userId vs Meteor.userId()【英文标题】: 【发布时间】:2014-11-12 01:51:06 【问题描述】:

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

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

docs 解释说Meteor.userId 返回一个函数,Meteor.userId() 返回一个字符串,但我不明白上面的userId 指的是哪一个。

【问题讨论】:

【参考方案1】:

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

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

【讨论】:

以上是关于userId vs Meteor.userId vs Meteor.userId()的主要内容,如果未能解决你的问题,请参考以下文章

为啥 Meteor.user 和 Meteor.userId 不同?

发布函数中的 Meteor.userId()

this.userId 在 Meteor.publish 中返回 undefined

Meteor 中的安全方法

Meteor 中的安全方法

MeteorJS - 如何防止匿名客户端订阅集合?