前端获取http状态码400的返回值实例

所属分类: 网络编程 / CSS/HTML 阅读数: 490
收藏 0 赞 0 分享

如下所示:

axios.get("/check_mobile_and_sent_code",{withCredentials:true,params:{mobile:formInline.mobile}}).then(res=>{
            console.log(res);
            //if(res.result==true){
              if (!this.timer) {
                this.count = this.TIME_COUNT;
                this.show = false;
                this.timer = setInterval(() => {
                  if (this.count > 0 && this.count <= this.TIME_COUNT) {
                    this.count--;
                  } else {
                    this.show = true;
                    clearInterval(this.timer);
                    this.timer = null;
                  }
                }, 1000)
              }
            //}
          }).catch(error=>{
            console.log(error.response.data);
            console.log(error.response.status);
            console.log(error.response.headers); 
            console.log('Error', error.message);
            console.log(error.config);
          })

使用场景:

当后端判断验证的手机号已存在的时候会返回400,这时需要跳到error条件中,得到后台400的返回数据如上。

以下是error.response返回值:

这里如果直接输出error,等于error.message

附状态码为200的返回值:

以上这篇前端获取http状态码400的返回值实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

更多精彩内容其他人还在看

推荐一篇利用th,colgroup,col定义表格样式

推荐一篇利用th,colgroup,col定义表格样式
收藏 0 赞 0 分享

都是IE惹的祸多浏览器兼容问题

都是IE惹的祸多浏览器兼容问题
收藏 0 赞 0 分享

彻底弄懂CSS盒子模式系列教程集合

彻底弄懂CSS盒子模式系列教程集合
收藏 0 赞 0 分享

dl,dt,dd制作的CSS垂直菜单

dl,dt,dd制作的CSS垂直菜单
收藏 0 赞 0 分享

推荐css打造经典鼠标触发显示选项

推荐css打造经典鼠标触发显示选项
收藏 0 赞 0 分享

div+css中Class与ID的区别

div+css中Class与ID的区别
收藏 0 赞 0 分享

CSS Div 最小高度在IE 6 和IE 7中的兼容性问题

CSS Div 最小高度在IE 6 和IE 7中的兼容性问题
收藏 0 赞 0 分享

让iframe自适应高度(支持xhtml)IE firefox兼容

让iframe自适应高度(支持xhtml)IE firefox兼容
收藏 0 赞 0 分享

用&lt;TABLE&gt;语句来实现圆角表格可以省去制作圆角图片之苦!

用&lt;TABLE&gt;语句来实现圆角表格可以省去制作圆角图片之苦!
收藏 0 赞 0 分享

实用的利用 CSS + &lt;em&gt;标签 来完成一个三角形的制作

实用的利用 CSS + &lt;em&gt;标签 来完成一个三角形的制作
收藏 0 赞 0 分享
查看更多