如何在vue里面优雅的解决跨域,路由冲突问题

来源:互联网 发布:网络销售客服工作内容 编辑:程序博客网 时间:2024/06/05 15:18

当我们在路由里面配置成以下代理可以解决跨域问题

proxyTable: {
            '/goods/*': {
                target:'http://localhost:3000'
            },
            '/users/*': {
                target:'http://localhost:3000'
            }
        },

这种配置方式在一定程度上解决了跨域问题,但是会带来一些问题,
比如我们的vue 路由 也命名为 goods,这时候就会产生了冲突,

如果项目中接口很多,都在这里配置是很麻烦的,也容易产生路由冲突。

正确的姿势
如果把所有的接口,统一规范为一个入口,在一定程度上会解决冲突
把以上配置统一前面加上 /api/

proxyTable: {
        '/api/**': {
            target:'http://localhost:3000'
        },
    },

如果我们配置成这种方式,在使用http请求的时候就会发生变化,会在请求前面加上一个api,相对路由也会发生变化,也会在接口前面加上api,这样也会很麻烦,我们可以使用以下方式来解决这个问题

proxyTable: {
           '/api/**': {
               target:'http://localhost:3000',
               pathRewrite:{
                   '^/api':'/'
               }
           },
       },

上面这个代码,就是把咱们虚拟的这个api接口,去掉,此时真正去后端请求的时候,不会加上api这个前缀了,那么这样我们前台http请求的时候,还必须加上api前缀才能匹配到这个代理,代码如下:

logout(){
    axios.post('/api/users/logout').then(result=>{
        let res = result.data;
        this.nickName = '';
        console.log(res);
    })
},
getGoods(){
    axios.post('/api/goods/list').then(result=>{
        let res = result.data;
        this.nickName = '';
        console.log(res);
    })
}

我们可以利用axios的baseUrl直接默认值是 api,这样我们每次访问的时候,自动补上这个api前缀,就不需要我们自己手工在每个接口上面写这个前缀了
在入口文件里面配置如下:

import Axios from 'axios'
import VueAxios from 'vue-axios'
 
Vue.use(VueAxios, Axios)
Axios.defaults.baseURL = 'api'

如果这配置 ‘api/’ 会默认读取本地的域
上面这样配置的话,不会区分生产和开发环境
在config 文件夹里面新建一个 api.config.js 配置文件

const isPro = Object.is(process.env.NODE_ENV, 'production')
 
module.exports = {
    baseUrl: isPro ? 'http://www.vnshop.cn/api/': 'api/'
}

然后在main.js 里面引入,这样可以保证动态的匹配生产和开发的定义前缀

import apiConfig from '../config/api.config'
 
import Axios from 'axios'
import VueAxios from 'vue-axios'
 
Vue.use(VueAxios, Axios)
Axios.defaults.baseURL = apiConfig.baseUrl

经过上面配置后,在dom里面可以这样轻松的访问,也不需要在任何组件里面引入axios模块了。

logout(){
    this.$http.post('/users/logout').then(result=>{
        let res = result.data;
        this.nickName = '';
        console.log(res);
    })
},
getGoods(){
    this.$http.post('/goods/list').then(result=>{
        let res = result.data;
        this.nickName = '';
        console.log(res);
    })
}

最终代码
在代理里面配置

proxyTable: {
        '/api/**': {
            target:'http://localhost:3000',
            pathRewrite:{
                '^/api':'/'
            }
        },
    },

在config里面的api.config.js 配置
在config 文件夹里面新建一个 api.config.js 配置文件

const isPro = Object.is(process.env.NODE_ENV, 'production')
 
module.exports = {
    baseUrl: isPro ? 'http://www.vnshop.cn/api/': 'api/'
}

关于生产和开发配置不太了解

可以去 dev-server.js 里面看配置代码

const webpackConfig = (process.env.NODE_ENV === 'testing'|| process.env.NODE_ENV === 'production') ?
    require('./webpack.prod.conf') :
    require('./webpack.dev.conf')

在main.js 入口文件里面配置

import apiConfig from '../config/api.config'
 
import Axios from 'axios'
import VueAxios from 'vue-axios'
 
Vue.use(VueAxios, Axios)
Axios.defaults.baseURL = apiConfig.baseUrl

在dom里面请求api的姿势

logout(){
    this.$http.post('/users/logout').then(result=>{
        let res = result.data;
        this.nickName = '';
        console.log(res);
    })
},
getGoods(){
    this.$http.post('/goods/list').then(result=>{
        let res = result.data;
        this.nickName = '';
        console.log(res);
    })
}

vuejs项目生产环境,上线解决跨域问题,请看以下文章
vue项目上线 看看这个文章,专门讲上线的

有疑问可以探讨
如有帮助,请您点赞
欢迎加入组织

<img src="http://www.jqhtml.com/wp-content/uploads/2017/11%3Cimg%20src=" http:="" www.jqhtml.com="" wp-content="" uploads="" 2017="" 11="" jiaru.png"="" alt="jiaru" width="618" height="800" class="alignnone size-full wp-image-9473" style="margin: 0px auto 10px; padding: 0px; font-size: 14px; border: none; display: block; max-width: 100%; height: auto;">/jiaru.png” />

原文地址:https://segmentfault.com/a/1190000011715088

阅读全文
0 0
原创粉丝点击