gpt4 book ai didi

javascript - Vue2 回调中发布 axios 请求无法正常工作

转载 作者:行者123 更新时间:2023-12-03 03:14:21 26 4
gpt4 key购买 nike

在我的 Vue2 应用程序中,我正在使用 axios 执行 POST 请求:

window.axios.post(`/clients/${this.getClientId}/connection`, {
clientType: newClientType,
url: this.client.url,
username: this.client.username,
password: this.client.password
}).then((success)=>{

console.log(success);

},(error)=>{

console.log(error);

})

如果得到 400 或 409(任何错误响应)响应,我得到的 console.log 只是“假”,而我通常会得到正确的响应,不明白为什么这个响应不同?

最佳答案

试试这个,它是来自 docs 的语法

window.axios.post(`/clients/${this.getClientId}/connection`, {
clientType: newClientType,
url: this.client.url,
username: this.client.username,
password: this.client.password
}).then((success)=>{

console.log(success);

}.catch(function (error) {
console.log(error);
});

关于javascript - Vue2 回调中发布 axios 请求无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46834049/

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