我的所有验证都包含以下内容:
const validations = {
password: {
presence: true
},
confirmPassword:{
equality: {
attribute: "password",
message: "Passwords do not match",
comparator: function(v1, v2) {
return v1 === v2
}
}
}
}
我想分别显示错误,所以我有以下内容:
let passwordError = validate('password', this.state.password);
let confirmPasswordError = validate("confirmPassword", { confirmPassword: this.state.confirmPassword, password: this.state.password});
密码验证有效。而且,confirmPassowrd的在线状态验证有效,但相等性检查无效。
答案 0 :(得分:2)
已经使用console.log检查值v1和v2即将到来吗?例如对我来说变量v1即将到来:
{confirmPassword:"12345", password:"12345"}
然后就做:
v1.confirmPassword === v1.password