用户已创建,但在注销MeteorJS后无法登录

时间:2016-08-16 12:13:58

标签: meteor

因此,我在创建模板时创建了新用户。用户正在成功创建,并自动登录,但如果我退出然后尝试登录,则会找不到用户'。这是我的代码

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

你知道这是什么问题吗?

0 个答案:

没有答案