db('fruit').where('fruit_name', 'apple')
.then(data => {
if (data.length === 0) {
db('fruit').insert({
amount: '2' //just for this post
})
.then(res.sendStatus(200))
.catch(res.sendStatus(500));
}
else {
db('fruit').where('fruit_name', 'apple').update({
amount: '5' //just for this post
})
.then(res.sendStatus(200))
.catch(res.sendStatus(500))
}
})
.catch(error => {
res.sendStatus(500)
})
我不明白为什么执行 catch 块并且服务器给了我Can't set header after sending them
错误。发生此错误是因为我正在发送两个res.sendStatus。.then 块工作正常,除非数据无法存储在数据库中,否则不应执行 .catch 块。
这是用 knex 编写的.js在 Node Express 服务器中,以防万一,查询语句正在查询 fruit 表,其中fruit_name列的项目等于苹果,如果苹果不存在,则插入新的金额行,如果存在,则更新金额行。
db('fruit').where('fruit_name', 'apple')
.then(data => {
if (data.length === 0) {
db('fruit').insert({
amount: '2' //just for this post
})
.then(()=>res.sendStatus(200))
.catch(()=>res.sendStatus(500));
}
else {
db('fruit').where('fruit_name', 'apple').update({
amount: '5' //just for this post
})
.then(()=>res.sendStatus(200))
.catch(()=>res.sendStatus(500))
}
})
.catch(error => {
return res.sendStatus(500)
})
嗨,卡尔弗特。您需要返回回复。这现在应该可以正常工作。