美文网首页
nuxt axios https error unable to

nuxt axios https error unable to

作者: 章文顺 | 来源:发表于2019-08-09 17:05 被阅读0次

在~/plugins/axios.js 中,按如下修改

import https from 'https';

export default function ({ $axios, store }) {
    const agent = new https.Agent({  
        rejectUnauthorized: false
    }); 

    $axios.onRequest(config => {
        if (process.env.NODE_ENV === 'development') { // 此处,视个人情况而定
            config.httpsAgent = agent;
        }                     
    });
}

大前端知识库收集分享 www.rjxgc.com 壹玖零Tech
搜罗各种前后端奇淫技巧,花式编程思想,日日更新,速来围观吧...

相关文章

网友评论

      本文标题:nuxt axios https error unable to

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