码迷,mamicode.com
首页 > 移动开发 > 详细

nodejs 服务器模拟异常状态码429,以及前端vue axios捕获状态码

时间:2019-05-01 10:24:54      阅读:387      评论:0      收藏:0      [点我收藏+]

标签:ams   .post   class   catch   状态码   ror   return   headers   ==   

 

 

nodejs 服务端发送429状态:

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

 

vue客服端

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);
        });
}

 

nodejs 服务器模拟异常状态码429,以及前端vue axios捕获状态码

标签:ams   .post   class   catch   状态码   ror   return   headers   ==   

原文地址:https://www.cnblogs.com/web-fusheng/p/10799223.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!