gpt4 book ai didi

validation - Sequelize 自定义验证器

转载 作者:行者123 更新时间:2023-12-03 22:27:41 26 4
gpt4 key购买 nike

我想引用现有字段创建自定义字段验证器。我所做的是创建一个自定义验证器:

const User = sequelize.define('User', {
postalCode: {
type: DataTypes.STRING
},
country: DataTypes.STRING,
}, {
validate: {
wrongPostalCode() {
if (this.postalCode && this.country) {
if (!validator.isPostalCode(String(this.postalCode), this.country)) {
throw new Error('Wrong postal code')
}
}
}
}
});
User.associate = (models) => {
// TO DO
};
return User;
};


正如您在下面的错误消息中看到的,我们正在获取此验证器,但在“路径”行中有验证器名称。我想将其更改为例如“postalCode”或以某种方式将其与模型中的一个字段连接起来。这对我来说非常重要,因为这与前端相关并解析它以纠正表单控制。

enter image description here

有什么办法吗?

提前谢谢你:)

最佳答案

您是否尝试使用 custom validator for the field 代替?我还没有尝试过下面的代码,但应该可以工作并将验证器链接到 postalCode 字段。

const User = sequelize.define('User', {
postalCode: {
type: DataTypes.STRING,
validate: {
wrongPostalCode(value) {
if (this.country) {
if (!validator.isPostalCode(String(this.postalCode), this.country)) {
throw new Error('Wrong postal code');
}
}
}
}
},
country: DataTypes.STRING,
});

关于validation - Sequelize 自定义验证器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50960963/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com