gpt4 book ai didi

sequelize.js - 在 Sequelize 中使用 .create(...) 方法时如何处理错误

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

Sequelize 专家!

我想问一下,使用 .create(...) 方法时如何处理错误。我在 documentationstackoverflow 中都找到了关于如何处理 .build()findOrCreate() 方法的错误的帖子,但没有找到 create() 方法的帖子。

评论受到高度赞赏。

笔记:
我正在使用 sequelize v3.1.0 乏味的 v1.11.0

最佳答案

sequelize 中的所有异步操作都返回一个 promise

promise 是一个对象,其中包含一些方法,这些方法将根据异步操作是否成功而被调用

Model.create/findOrCreate/update/whatever.then(function () {
// Will be invoked on success
}).catch(function () {
// Will be invoked on failure
});

关于sequelize.js - 在 Sequelize 中使用 .create(...) 方法时如何处理错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30839111/

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