流星注册被禁止

时间:2018-01-09 20:17:49

标签: javascript meteor meteor-accounts

我一直在打猎,而且我看过类似的帖子,这些帖子都是通过删除软件包来修复的,或添加forbidClientAccountCreation: false;我使用的是帐户密码和帐户-ui,我已经加入了{{> loginbuttons}}但我还是无法创建用户。从文档来看,它应该只是简单地工作,而不需要编写任何进一步的代码......正如我所看到的许多教程......任何帮助都赞赏!

1 个答案:

答案 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
  });

});