美文网首页
使用vue-cli脚手架跨域问题

使用vue-cli脚手架跨域问题

作者: 饶砳砳 | 来源:发表于2017-05-22 23:53 被阅读0次

    在vue-cli中的config文件夹下面的index.js文件dev.proxyTable;

    我们要请求一个http://xxxx.cn/mobile/index.我们就可以设置如下
    proxyTable: {

    '/mobile': {

      target: 'http://xxxx.cn',

      changeOrigin: true,

      pathRewrite: {

      '^/mobile': '/mobile'

      }

     }

    }

    或者后台设置Access-Control-Allow-Origin:*

    相关文章

      网友评论

          本文标题:使用vue-cli脚手架跨域问题

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