前端发起更改数据请求后再获取后端数据发现数据并未更改的一个解决办法
问题再现
async function refuseRefund(id,type){
if(confirm('确定拒绝?')){
await fetch('http://127.0.0.1:3000/api/refuseRefund', {
method: 'POST',
headers: {
'Content-type': 'application/json'
},
body: JSON.stringify({
id: id,
type: type
})
})
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(data => {
//重载
addOrdersList();
})
.catch(error => {
console.error('Error:', error);
});
}
}
async function addOrdersList() {
buyShipOrders = await getAll('buy');
console.log(buyShipOrders);
}
我们向后端发起一个http请求来修改数据库的某个值,然后再重新获取数据,发现数据并未更改,奇怪,明明函数里用了await()
原因
原来后端node.js函数出了问题
app.post('/api/refuseRefund', (req, res) => {
const orderId = req.body.id;
const type = req.body.type;
pool.query(`UPDATE ${type} set status = ? WHERE id = ? `, ['已拒绝',orderId], (error, results) => {
if (error) {
console.error('Error querying database:', error);
res.status(500).send('Internal Server Error');
return;
}
});
res.json({status: true});
});
nodejs也是js,那么既然是js,那么它就是异步的,也就是说,res.json()会先于pool.query()执行,数据库修改也是需要时间的,这就回造成数据库还没处理完就返回了res,前端这边拿到res也是立马再发起了一个获取数据的请求,由于数据库还没修改完,所以返回的是修改前的值
解决
将res.json()放在pool.query()里面
app.post('/api/refuseRefund', (req, res) => {
const orderId = req.body.id;
const type = req.body.type;
pool.query(`UPDATE ${type} set status = ? WHERE id = ? `, ['已拒绝',orderId], (error, results) => {
if (error) {
console.error('Error querying database:', error);
res.status(500).send('Internal Server Error');
return;
}
res.json({status: true});
});
});
总结
node.js是异步的,需要考虑执行顺序