我userId
对此代码中的变量感到困惑:
Posts.allow({
insert: function(userId, doc) {
// only allow posting if you are logged in
return !! userId;
}
});
文档解释了返回Meteor.userId
一个函数并Meteor.userId()
返回一个字符串,但我不明白userId
上面提到了哪些。
我userId
对此代码中的变量感到困惑:
Posts.allow({
insert: function(userId, doc) {
// only allow posting if you are logged in
return !! userId;
}
});
文档解释了返回Meteor.userId
一个函数并Meteor.userId()
返回一个字符串,但我不明白userId
上面提到了哪些。