因此,我在创建模板时创建了新用户。用户正在成功创建,并自动登录,但如果我退出然后尝试登录,则会找不到用户'。这是我的代码
Template.hello.onCreated(function helloOnCreated() {
// counter starts at 0
this.counter = new ReactiveVar(0);
var userObject = {
username: "anotherTest",
mail: "anotherTest@me.com",
password: "testingME"
};
Accounts.createUser(userObject, function(error){
console.log('User created');
console.log(error);
});
});
如果需要,这是完整的项目。 https://github.com/hayk94/UbMvp/tree/accountsTEST
你知道这是什么问题吗?