我有一个基本查询来获取数据库中人员的电子邮件列表。当我通过控制台console.log()时,它运行良好,但在应用程序中它只是没有。
// this works in console.log() but not in the app
return memberProfile.findOne({memberId: Meteor.user()._id}).email
// this is how its meant to be, where we insert each appropriate user id
return memberProfile.findOne({memberId: this._id}).email
我仍然掌握Meteor的情况,非常感谢你学习它的帮助。