Meteor Account.createUser TypeError:无法读取属性' accessToken'未定义的

时间:2016-04-23 10:54:41

标签: meteor access-token createuser

我尝试创建用户注册。我已经安装了

accounts-base                              1.2.2* A user account system
accounts-password                          1.1.4* Password support for accounts

在客户端:

var userNew = {
    password: textPassword,
    username: textUserName,
    profile: {
        address: textAddress
    }
};

Accounts.createUser(userNew, function (err) {
    if (err) {
        alert(err.message);
    } else {
        Router.go('/');
    }
});

但显示错误:

I20160423-17:47:07.299(7)? Exception while invoking method 'createUser' TypeError: Cannot read property 'accessToken' of undefined

我也在服务器端设置了:

Accounts.config({
    forbidClientAccountCreation : false
});

1 个答案:

答案 0 :(得分:1)

我完成了更新&重新创建PROJECT。我不知道问题是什么。但重新创建项目解决了这个问题。 希望它能帮助别人