开发者问题收集

Undefined 不是一个函数 - MeteorJS

2014-09-09
42

我不断收到以下行的未定义不是函数

Institutions.insert({$set: {admin: Meteor.userId(), title: inst_name, type: inst_type, school: inst_school, description: inst_desc}, $push: {members: Meteor.userID()}});

以下是上下文中的完整代码片段。有人能解释如何纠正此错误以及导致此错误的原因吗?

https://bpaste.net/show/f1e1c993cc0b

1个回答

愚蠢的错误 - Meteor.userID() 需要更改为 Meteor.userId()

Tejas Manohar
2014-09-09