gpt4 book ai didi

meteor - 为什么 Meteor.Accounts 会返回 "has no method ' onCreateUser'"?

转载 作者:行者123 更新时间:2023-12-04 23:50:50 24 4
gpt4 key购买 nike

我正在尝试在创建用户个人资料时将 accountActive 和 accountExpirationDate 添加到它。根据我读过的所有内容,我应该像这样使用 Accounts.onCreateUser:

// Add accountActive and accountExpirationDate
Accounts.onCreateUser(function(options, user) {
if (options.profile) {
user.profile = options.profile;
user.profile.accountActive = false;
user.profile.accountExpirationDate = null;
}
return user;
});

这两个字段没有被添加,我在控制台中收到这个错误。
Uncaught TypeError: Object #<Object> has no method 'onCreateUser' 

我究竟做错了什么?

最佳答案

问题是 Accounts.onCreateUser 正在客户端文件夹中运行。它不能在客户端运行,只能在服务器上运行。

关于meteor - 为什么 Meteor.Accounts 会返回 "has no method ' onCreateUser'"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22650839/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com