我有一个集合和一些允许规则:
Teams = new Meteor.Collection("teams")
Teams.allow({
insert: function(userId, doc) {
console.log(userId);
console.log(Meteor.userId());
// do some stuff
}
})
当我这样做时,我Teams.insert({ name: "superheroes" })
在控制台中看到 2 个相等的字符串。userId
那么和 和有什么区别Meteor.userId()
呢?