gpt4 book ai didi

javascript - axios.post.then() 由于某种原因忽略了 then() 部分

转载 作者:行者123 更新时间:2023-12-04 08:29:02 25 4
gpt4 key购买 nike

我有这个功能...

function waterCalibrator() {
axios.post("http://localhost:3001/api/update-water", {
waterValue: props.moisture
}).then(function(response){
console.log("Water calibration worked")
console.log(response);
}).catch(function(error) {
console.log(error);
})
props.airValueObject.setWaterFlag(true);
props.airValueObject.setWaterValue(props.moisture);
}
谁能解释为什么 then() 从未被触发?我没有错误。它根本没有触发。一切正常,除了这个......
    }).then(function(response){
console.log("Water calibration worked")
console.log(response);
}).catch(function(error) {
console.log(error);
})
服务器端看起来像这样......
app.post("/api/update-water", (req, res) => {
const waterValue = req.body.waterValue;
const sqlUpdateWater = "UPDATE user SET waterValue=? WHERE uid='j' ";
db.query(sqlUpdateWater, [waterValue], (err, result)=>{
console.log(`water is: ${waterValue}`)
})
})

最佳答案

您收到了 204 status code ,这意味着请求成功通过,但根本没有内容,因此您试图不记录任何内容。

The HTTP 204 No Content success status response code indicates that the request has succeeded, but... The common use case is to return 204 as a result of a PUT request, updating a resource, without changing the current content of the page displayed to the user. If the resource is created, 201 Created is returned instead. If the page should be changed to the newly updated page, the 200 should be used instead.


您还需要按照之前的评论中的建议,打开开发控制台并检查 Promise 本身的状态。这个 promise 似乎是成功的。
如果此答案有助于解决问题, 考虑 接受答案或支持它。谢谢。

关于javascript - axios.post.then() 由于某种原因忽略了 then() 部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65116037/

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