执行组合查询时出错
我正在使用 sequelize 和 mysql
这是我的代码:
const makeAuthenticate = async (req, res) => {
const newOtp = Math.floor(100000 + Math.random() * 900000);
try {
const {phone} = req.body;
const [user, created] = await db.User.findOrCreate({
where: { phone: phone },
})
.then(e => {
db.User.update({ otp: newOtp }, {
where: {
phone: phone
}})
.then(f => res.status(200).json({
otp: newOtp
}))
.catch(err => res.status(500).json({error: err})) // Error comes from here !
})
.catch(err => res.status(500).json({error: err}))
} catch (error) {
return res.status(500).json({error: error.message})
}
}
这是我对代码所做的事情:
基本上,我在单个查询中同时进行注册和登录,换句话说,首先使用 findOrCreate - 我找到用户或者我将创建一个新用户,然后我需要发送一次密码(这是临时的 6 位数字“)他们在流程中使用的电话号码。
所以,我正在将 otp 更新到我的用户表,然后我需要添加调用以向用户发送 SMS(我还没有这样做)所以现在处于 findOrCreate 阶段并再次调用特定的更新用户。
通过这个我得到一个错误如下:
UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
烙印99
相关分类