Collection2验证上下文在Accounts.createUser中不起作用

时间:2015-06-19 11:10:05

标签: javascript node.js meteor meteor-collection2

我正在开发流星应用程序。我有定制的登记表。 我正在使用collection2和简单模式进行客户端/服务器验证。

问题: - 当我在客户端写下面的代码时,它显示我回调的错误不是函数。

  Accounts.createUser(newUser,{validationContext: 'insertForm'}, function(error,result){
              if(!error){
                  alert('yey');
              }
          });

错误:TypeError:回调不是函数

帐户... 506dd40(第151行)

这是我的帮助代码,我想存储错误。

Template.Signup.helpers({
    errors:function(){
        var context = Meteor.users.simpleSchema().namedContext('insertForm');
        return context.invalidKeys().map(function(data){ return {message: context.keyErrorMessage(data.name)}});
    }
});

0 个答案:

没有答案