在示例应用程序“聚会”中,有一组用于聚会收集的允许/拒绝规则。的规则insert
如下所示:
Parties.allow({
insert: function (userId, party) {
return false; // no cowboy inserts -- use createParty method
},...
同时,createParty 方法实现了 Party.insert({....}),它在某种程度上不受应用于 Party 集合的规则的影响。
.....
return Parties.insert({
owner: this.userId,
x: options.x,
y: options.y,
title: options.title,
description: options.description,
public: !! options.public,
invited: [],
rsvps: []
});
.....
有人可以解释为什么 createParty 方法不受规则影响吗?
谢谢你。