首頁  >  文章  >  web前端  >  前端取得http狀態碼400的回傳值實例_基礎教學課程

前端取得http狀態碼400的回傳值實例_基礎教學課程

亚连
亚连原創
2018-05-21 15:18:184519瀏覽

下面我就為大家帶來一篇前端取得http狀態碼400的回傳值實例。現在就分享給大家,也給大家做個參考。

如下:

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(&#39;Error&#39;, error.message);
            console.log(error.config);
          })

使用場景:

當後端判斷驗證的手機號碼已存在的時候會回傳400,這時需要跳到error條件中,得到後台400的回傳資料如上。

以下是error.response回傳值:

#這裡如果直接輸出error,等於error.message

附狀態碼為200的回傳值:

上面是我整理給大家的,希望今後對大家有幫助。

相關文章:

JavaScript在IE9之前版本中記憶體外洩問題(詳細總結)

設計模式中的facade外觀模式在JavaScript開發中的運用(進階篇)

#JavaScript設計模式開發中組合模式的使用教學課程(進階篇)

以上是前端取得http狀態碼400的回傳值實例_基礎教學課程的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn