我使用最快的验证器来验证这样的对象:
{
"_id":"619e00c177f6ea2eccffd09f",
"parent_id": "619e00c177f6ea2eccffd09f",
}
CCD_ 1和CCD_ 2不能相等。如何检查?我知道fastest-validator
有以下等式验证。但我需要检查相反的情况。(例如type= "equal"
(:
const schema = {
password: { type: "string", min: 6 },
confirmPassword: { type: "equal", field: "password" }
}
const check = v.compile(schema);
check({ password: "123456", confirmPassword: "123456" }); // Valid
check({ password: "123456", confirmPassword: "pass1234" }); // Fail
提前感谢
根据自定义验证器的元信息:
您可以通过context.meta.为自定义验证器传递任何额外的元信息
这样我就可以比较我想要的任何两个字段。在我比较_id
和parent_id
时,我可以使用以下内容:
const v = new Validator({
useNewCustomCheckerFunction: true,
messages: {
notEqual: "_id and parent_id can not be equal"
}
});
const editSchema = {
_id: { type: "string" },
parent_id: {
type: "string",
custom: (value, errors, schema, name, parent, context) =>{
if (context.data._id === value) errors.push({type: "notEqual"})
return value
}
}
};