nodejs 服務器模擬異常狀態碼429,以及前端vue axios捕獲狀態碼

 

 

nodejs 服務端發送429狀態:vue

    extendInfo (req, res) {
       res.status(429).json('Too many requests, please try again later.')  
    },

 

vue客服端node

export const ajaxPost=(url, params) => {
    return axios.post(ajaxIp+url, params, {
        headers: {
            // "Content-Type": "multipart/form-data"
            "Content-Type": "application/json"
        }
    }).then(res=>{
        if (data.code == 200) {
            return data.data;
        }else {
            return {code:data.code,msg:data.msg}
        }
    })
        .catch(err => {  //捕獲異常狀態碼
            console.error(err.response.status);
        });
}
相關文章
相關標籤/搜索