我一直在打猎,而且我看过类似的帖子,这些帖子都是通过删除软件包来修复的,或添加forbidClientAccountCreation: false;
我使用的是帐户密码和帐户-ui,我已经加入了{{> loginbuttons}}
但我还是无法创建用户。从文档来看,它应该只是简单地工作,而不需要编写任何进一步的代码......正如我所看到的许多教程......任何帮助都赞赏!
答案 0 :(得分:2)
我认为你的意思是你无法自行注册?此设置通常位于/common
或/both
文件夹中的启动方法中。
此文件来自我的一个项目/both/startup.js
import { Meteor } from 'meteor/meteor';
//
// This code is run by both client and server. For Accounts.config this is a MUST!
//
Meteor.startup(() => {
Accounts.config({
sendVerificationEmail: false,
forbidClientAccountCreation: true
});
});