Vue axios调用第三方接口跨域解决

Posted lieaiwen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue axios调用第三方接口跨域解决相关的知识,希望对你有一定的参考价值。

1.

在config目录下index.js文件中设置proxyTable:

proxyTable: {
      ‘/v1‘: {
        target: ‘https://api.douban.com‘,
        changeOrigin: true,
        pathRewrite: {
          // /v1将代表target/v1 
          ‘^/v1‘: ‘/v1‘
        }
      }
    }

2.0 

2.

因为在新版的vue-cli的package.json中webpack-dev-server没有设置--open,所以打开package.json文件在”scripts”属性中的”dev”属性中手动添加--open,如下代码所示:

"scripts": {
    "dev": "webpack-dev-server --open --inline --progress --config build/webpack.dev.conf.js",
    "start": "npm run dev",
    "build": "node build/build.js"
  },

3.0 

3.

      axios
        .get(
          "/v1/getServiceInfo?xxxxxx"
        )
        .then(res => {
          console.log(res.data)
        })









以上是关于Vue axios调用第三方接口跨域解决的主要内容,如果未能解决你的问题,请参考以下文章

Vue请求第三方接口跨域最终解决办法!2020最终版!

在vue项目中配置proxy解决跨域问题

Vue 基于axios接口封装,dev环境跨域解决

Vue项目开发过程中解决跨域问题(vue.config.js结合axios)

解决Vue前后端跨域问题的多种方式

解决vue axios跨域请求发送两次问题