问题称述:甲方提供第三方接口的地址,该接口包含我们需要的json数据,前端接收接口数据时,出现跨域问题

我这里要调用的第三方接口地址为[http://106.15.236.221:8888/test/data/warring.htm](http://106.15.236.221:8888/test/data/warring.htm)

在项目的main.js中全局配置axios

import Axios from 'axios'
Vue.prototype.axios = Axios //全局注册,使用方法为:this.$axios

找到vue项目的目录config > index.js 下面有个服务器配置dev 下面的 proxyTable:{}

dev: {
    // Paths
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {
      '/urlData':{
        target:'http://106.15.236.221:8888',//设置成你调用的接口
        changeOrigin:true,
        pathRewrite:{
          '^/urlData':''//这里理解为用‘/urlData’代替target里面的地址,后面组件中文名调用接口时直接用urlData代替,
        }
      }
    },

在项目的目标文件中,axios请求里改一下url

<template>
  <div>
  <button @click="getData()">默认按钮</button>

    </div>        
</template>

<script>
import axios from "axios"
export default {
   data () {
    return {
      dataList: [],
    };
  },
  methods: {
    getData(){
      console.log("获取数据之前");
// measurePointApi.getUrlData().then(res=>{
 //   this.dataList =  res.data
 //   console.log("点击按钮获取到的数据是",  this.dataList);
 // })
      this.axios.get('/urlData/test/data/warring.htm').then(res=>{
      console.log("res数据是",res);
      console.log("res.data数据是",res.data);
      console.log("res.data.data数据是",res.data.data);
      this.dataList = res.data.data;
 })
 },
  }
}
</script>

修改之后请求接口就不会再报 Access-Control-Allow-Origin此类跨域错误

该方法引用VUE 使用axios请求第三方接口数据跨域问题解决-百度网盘下载-Java自学者论坛 - Powered by Discuz!

 

 

Logo

DAMO开发者矩阵,由阿里巴巴达摩院和中国互联网协会联合发起,致力于探讨最前沿的技术趋势与应用成果,搭建高质量的交流与分享平台,推动技术创新与产业应用链接,围绕“人工智能与新型计算”构建开放共享的开发者生态。

更多推荐