Axios 怎么获取到HTTP状态值?
使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在axios返回数据拦截器里面:
你最后return的是res.data,还是res。如果是res.data,直接在这一步就拦下了,改成res就好
response是你post后端url得到的json,比如说后台返回
return jsonify({'code': 200, 'msg': "删除成功"})
可以在后端api里定义code
console.log(response.status)
是不是这个status?
我的axios v0.17.1