I don't see any options in the accounts-entry package, nor the accounts-password package, that allows for a password-confirmation field in the signup form in accounts-entry. Am I missing something?
问问题
691 次
2 回答
3
不,包上没有验证密码字段,你需要自己用简单的JS创建
if(password === validationPassword){
Meteor.call("createUsers",mail,password,profile);
}
这种动作只能在客户端完成,不能在服务端完成,因为用户输入的密码是发给服务端的(hashed)
,所以不能做任何服务端验证。
我认为简单if (===)
就可以,而且方法也很简单
于 2015-01-22T17:57:43.060 回答
1
四处询问,我最终找到的解决方案是使用不同的包。我使用了joshowens:accounts-entry包,我会向任何人推荐它。
于 2016-04-21T16:37:14.450 回答