gpt4 book ai didi

javascript - 如何在 Express API 中显示 Sequelize 验证错误消息

转载 作者:行者123 更新时间:2023-12-03 22:17:47 25 4
gpt4 key购买 nike

我在运行 MySQL 的 Sequelize ORM 的 Node.js/Express API 中使用了这个组织模型。当我违反 validation 下的 2-100 个字符规则时在下面的第一个代码示例中,我得到了经典的 err第二个代码示例中的 catch block 中的 item,它不包含有关验证错误的任何信息。
我想显示您可以在 validation { len: { msg: ...}} 下看到的验证错误消息在模型中。至少 console.log 它,然后稍后将其显示给最终用户。
但是,Sequelize 手册和我能找到的任何其他信息都没有解释我如何使用这个自定义错误消息。所以我的问题是如何利用它并显示它。
模型:

'use strict'

const { Sequelize, DataTypes } = require('sequelize');
const db = require('./../config/db.js')

const Organization = db.define('organizations', {
id: {
type: DataTypes.UUID,
defaultValue: Sequelize.UUIDV4,
primaryKey: true,
allowNull: false,
unique: true,
validate: {
isUUID: {
args: 4,
msg: 'The ID must be a UUID4 string'
}
}
},
name: {
type: DataTypes.STRING,
required: true,
allowNull: false,
validate: {
len: {
args: [2, 100],
msg: 'The name must contain between 2 and 100 characters.' // Error message I want to display
}
}
},
created_at: {
type: DataTypes.DATE,
required: true,
allowNull: false
},
updated_at: {
type: DataTypes.DATE,
required: true,
allowNull: false
},
deleted_at: {
type: DataTypes.DATE
}
},
{
underscored: true,
paranoid: true,
tableName: 'organizations',
updatedAt: 'updated_at',
createdAt: 'created_at',
deletedAt: 'deleted_at'
})

module.exports = Organization
Controller :
/**
* @description Create new organization
* @route POST /api/v1/organizations
*/

exports.createOrganization = async (req, res, next) => {
try {
const org = await Organization.create(
req.body,
{
fields: ['name', 'type']
})
return res.status(200).json({
success: true,
data: {
id: org.id,
name: org.name
},
msg: `${org.name} has been successfully created.`
})
} catch (err) {
next(new ErrorResponse(`Sorry, could not save the new organization`, 404))

// ^ This is the message I get if I violate the validation rule ^

}
}
验证和约束的 Sequelize 文档可在此处找到: https://sequelize.org/master/manual/validations-and-constraints.html
验证建立在 Validatorjs ( https://github.com/validatorjs/validator.js ) 之上,不幸的是,它也缺乏有关使用验证对象的实用信息。我想这意味着它必须是不言自明的,但是由于我是菜鸟,所以我迷路了。

最佳答案

我在 firstName 上对我的本地项目进行了相同的验证字段,我可能会得到这样的 Sequelize 错误

console.log('err.name', err.name);
console.log('err.message', err.message);
console.log('err.errors', err.errors);
err.errors.map(e => console.log(e.message)) // The name must contain between 2 and 100 characters.
validation output
如您所见,您可以检查 err.nameSequelizeValidationError然后循环 err.errors数组并获取 message用于 path 上的字段其余的其他属性也在那里。
错误显示示例:
const errObj = {};
err.errors.map( er => {
errObj[er.path] = er.message;
})
console.log(errObj);
你会得到一个像
{ 
firstName: 'The firstName must contain between 2 and 100 characters.',
lastName: 'The lastName must contain between 2 and 100 characters.'
}

关于javascript - 如何在 Express API 中显示 Sequelize 验证错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63856212/

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