在使用vue做项目的时候遇到了跨域问题,在此总结一下两种解决办法。

一、服务器端设置跨域

header('Access-Control-Allow-Origin:*'); 
header('Access-Control-Allow-Headers:content-type'); 
header('Access-Control-Request-Method:GET,POST'); 

二、vue设置代理服务器

如果是使用vue-cli创建的项目,可以在config文件下找到index.js配置文件,里面有proxyTable属性可以设置。

	proxyTable: {
      '/api': {
        target: 'http://192.168.106.109:8080',//跨域接口地址
        changeOrigin: true,//是否跨域
        pathRewrite: {
          '^/api': ''//需要重写的
        }
      }
    },

设置了上述属性之后便可以进行跨域访问,具体例子如下:
假如接口为:http://192.168.106.109:8080/putInfo

this.$axios.post('/api/putInfo',参数)
.then(res=>{console.log(res)})
.catch(err=>{console.log(err)})
Logo

前往低代码交流专区

更多推荐