当前位置:   article > 正文

Vue3+axios跨域问题

Vue3+axios跨域问题


1、问题:vue3中用axios请求数据时报错

  1. Access to XMLHttpRequest at 'http://127.0.0.1/api/dash' from origin
  2. 'http://localhost:8080' has been blocked by CORS policy: No 'Access-Control-Allow-Origin'
  3. header is present on the requested resource.

2、解决方法:
在vue.config.js中配置,配置代码如下:

  1. devServer: {
  2.     host: '0.0.0.0',
  3.     port: 8080,
  4.     open: true,
  5.     proxy: {
  6.       '/api': {
  7.         target: 'http://127.0.0.1/api/', //接口域名
  8.         changeOrigin: true,       //是否跨域
  9.         ws: true,            //是否代理 websockets
  10.         secure: true,          //是否https接口
  11.         pathRewrite: {
  12.           '^/api': ''//这里理解成用‘/api’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可
  13.         }
  14.       },
  15.       // headers:{
  16.       //   'Access-Control-Allow-Origin':'*'
  17.       // } 
  18.     }
  19.   }


在main.ts中添加:

  1. import { createApp } from 'vue';
  2. import App from './App.vue';
  3. import axios from "axios";
  4. import VueAxios from 'vue-axios';
  5. const app = createApp(App);
  6. app.use(VueAxios, axios).mount('#app');
  7. axios.defaults.baseURL = '/api/'  // api 即上面 vue.config.js 中配置的地址
  8. axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
  9. axios.defaults.headers.post['Access-Control-Allow-Origin'] = '*';
  10. //将axios挂载到原型对象上,vue3相比vue2有所改变,vue2这样写:Vue.prototype.$http = axios
  11. app.config.globalProperties.$axios = axios;

在index.vue中用axios请求数据:

  1. import { getCurrentInstance} from 'vue';
  2. let { proxy } = getCurrentInstance();
  3. proxy.$http.get(`dash`)
  4.     .then(response => {
  5.       // 处理响应数据
  6.       console.log(response);
  7.     })
  8.     .catch(error => {
  9.       // 处理请求错误
  10.       console.log(error);
  11.     });


再重新运行:npm run serve ,成功了!!!!!

浏览器中请求数据的接口是http://localhost:8080/api,指向http://127.0.0.1/api/

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/658310
推荐阅读
相关标签
  

闽ICP备14008679号