Axios 怎么获取到HTTP状态值?

发布于 2022-09-06 20:30:21 字数 909 浏览 8 评论 0

使用axios请求接口:

this.$http.post('xxx/register', this.formItem).then(function (response) {
          // debugger
          console.log(response)
        }.bind(this)).catch(function (response) {
            debugger
            console.log(response)  // 这里的response就是: {username: ["A user with that username already exists."]} 

          })

请问这里怎么判断是否是200的成功状态值呢?或许你会说在catch中捕获的就是接口失败错误,那么我怎么才能获取到status_code?

因为错误的时候console.log(response)就是

{username: ["A user with that username already exists."]} 

这里面没有错误代码的。


HTTP请求的状态码,浏览器是有明确的打印的:

图片描述


图片描述

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

作死小能手 2022-09-13 20:30:22

在axios返回数据拦截器里面:

axios.interceptors.response.use()

你最后return的是res.data,还是res。如果是res.data,直接在这一步就拦下了,改成res就好

画▽骨i 2022-09-13 20:30:22

response是你post后端url得到的json,比如说后台返回
return jsonify({'code': 200, 'msg': "删除成功"})
可以在后端api里定义code

生活了然无味 2022-09-13 20:30:22

console.log(response.status)图片描述

是不是这个status?
我的axios v0.17.1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文