美文网首页
axios请求设置超时

axios请求设置超时

作者: 初源yang | 来源:发表于2019-12-31 15:58 被阅读0次

    axios({
    method: 'POST',
    url: 'url',
    headers: {
    'Authorization': window.sessionStorage.getItem("key")
    },
    timeout: 4000, // 4 seconds timeout 超时
    params: params
    }).then(res => {
    console.log(res);
    }).catch(err => {
    console.log(err);
    });

    相关文章

      网友评论

          本文标题:axios请求设置超时

          本文链接:https://www.haomeiwen.com/subject/yqoboctx.html