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

所属分类: 网络编程 / CSS/HTML 阅读数: 457
收藏 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的返回值实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

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

滚动条效果

滚动条效果
收藏 0 赞 0 分享

层自动适应高度

层自动适应高度
收藏 0 赞 0 分享

让2个DIV居中并排显示

让2个DIV居中并排显示
收藏 0 赞 0 分享

会移动的文字(Marquee)

会移动的文字(Marquee)
收藏 0 赞 0 分享

认识CSS中absolute与relative

认识CSS中absolute与relative
收藏 0 赞 0 分享

用CSS构建iframe效果

用CSS构建iframe效果
收藏 0 赞 0 分享

不用float实现模块居中布局

不用float实现模块居中布局
收藏 0 赞 0 分享

引入CSS样式的五种方式

引入CSS样式的五种方式
收藏 0 赞 0 分享

利用相对定位及偏移量做精美输入界面

利用相对定位及偏移量做精美输入界面
收藏 0 赞 0 分享

用CSS实现文字变图象特效

用CSS实现文字变图象特效
收藏 0 赞 0 分享
查看更多