gpt4 book ai didi

javascript - 如何处理错误 : ER_DUP_ENTRY: Duplicate entry in nodejs

转载 作者:行者123 更新时间:2023-11-30 22:03:00 45 4
gpt4 key购买 nike

当出现重复条目​​时,我在 mysql 数据库中有唯一列,它给出错误:ER_DUP_ENTRY:重复条目如何处理错误表单 nodejs

最佳答案

将保存到 try block 上并捕获所有错误。添加对重复项的特定检查并将其余部分作为默认值处理

try {
return await this.userProfilesRepository.save(userProfile);
} catch (err) {
if (err.code === 'ER_DUP_ENTRY') {
//handleHttpErrors(SYSTEM_ERRORS.USER_ALREADY_EXISTS);
} else {
//handleHttpErrors(err.message);
}
}

关于javascript - 如何处理错误 : ER_DUP_ENTRY: Duplicate entry in nodejs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42766446/

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