gpt4 book ai didi

javascript - 如何用axios显示响应错误信息

转载 作者:行者123 更新时间:2023-11-29 23:45:21 24 4
gpt4 key购买 nike

几个月来一直在寻求实现这一目标,但现在需要它。我需要显示错误消息,在服务器上设置,关于出了什么问题:

服务器端点

abort(406, 'Foo bar!')

网页:

[...]
.catch(e => {
console.log(e.response.data) // does not work
})

在 chrome 开发工具中,在预览下,我看到消息 Foo bar!。如何在我的控制台日志中获取此消息?

此端点将根据操作具有不同的中止消息,因此我不想在网络上为错误设置静态错误消息。

Chrome 开发工具消息: enter image description here

最佳答案

这应该有效:console.log(e.response.data.message)。我想这就是您要找的。

这是针对这种类型的请求:

axios.post(
url,
{},
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error.response.data.message);
});

关于javascript - 如何用axios显示响应错误信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44385872/

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