美文网首页
vue-resoure 跨域问题 开发环境下代理解决

vue-resoure 跨域问题 开发环境下代理解决

作者: _韩小妖 | 来源:发表于2018-03-30 19:03 被阅读56次

    需在工程目录config/index.js内对proxyTable项进行如下配置:

    // config/index.js
    module.exports = {
      // ...
      dev: {
        proxyTable: {
          // proxy all requests starting with /api to jsonplaceholder
          '/api': {
            target: 'http://example.com',
            changeOrigin: true,
            pathRewrite: {
              '^/api': ''
            }
          }
        }
      }
    }
    

    这样我们在调用 Api 时,写 url 只需写成 /api/lists 就可以代表 example.com/api/lists

    官网api截图

    image.png

    参考文章
    https://blog.csdn.net/ycz19930423/article/details/77326262

    相关文章

      网友评论

          本文标题:vue-resoure 跨域问题 开发环境下代理解决

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