美文网首页
vue中上线后,关于接口报错404问题

vue中上线后,关于接口报错404问题

作者: tenro | 来源:发表于2019-02-25 10:06 被阅读0次

    由于在开发阶段去调用后台的接口时候,设计到跨域问题,所以我们要用proxyTable去处理,在config下面的index里面:

     proxyTable: {
          '/api': { 
              // http://10.109.0.145:8086/                后台本地服务地址
              // http:// xxxxxx.xxxxx.com/    正式域名地址
      
              //根据项目阶段去切换target地址即可
              target: 'http://xxxxx.xxxxx.com/',  //源地址
              changeOrigin: true, //改变源
              pathRewrite: {
                  '^/api': '' //路径重写npm
              }
          }
      },
    

    在getData.js里面使用root

    var root = process.env.API_HOST
    export const homeBanner = () => $http(root + '/information/loadingImg');  //通过root去自动识别项目所处的环境

    相关文章

      网友评论

          本文标题:vue中上线后,关于接口报错404问题

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