网上看了很多解决跨域问题的文章,到了jeecg-boot项目里面就是跑不起来,研究了半天统于搞定了,记录一下,些方法也适用于其它封装好的axios框架

1、这个项目的前端用的vue-cli 3设置在vue.config.js里面,不在以前的index.js里面,也没有proxytable参数,现在用的是:

 devServer: {
        port: 3000,
        host: 'localhost',
        proxy: {
            '/api': {
                target: 'http://localhost:9200', // mock API接口系统
                ws: true, // 启用websockets
                changeOrigin: true, // 是否跨域
                pathRewrite: { '^/api': '' // 默认所有请求都加了api前缀,需要去掉
                }
            },
            '/jeecg-boot': {
                target: 'http://localhost:8080', // 请求本地 需要jeecg-boot后台项目
                ws: false,
                changeOrigin: true
            }
        }
    }

这一步网上都有,基本都会设置;

2、重点是第二步,jeecg-boot对前端的axios做了封装,所以你用它的请求会自动加上baseUrl,根本不会到这个里面来拦截,所以我们页面引入的axios必须是它原来未封装过的:

import axios from 'axios'

千万不能引其它的

3、在方法里面直接使用引入的axios:

 axios({url:"/api/book/_search",  data:params,
          headers: {"Access-Control-Allow-Origin": "*"},method:'post'}
    ).then((res) => {
          if (res.success) {
            this.listData=res.hits.hits;
            console.log(res)
          }
          if(res.code===510){
            this.$message.warning(res.message)
          }
          this.loading = false;
        })
      },

像我这样实际请求的地址就变成http://localhost:9200/book/_search,中间的api会自动去掉。

本地问题解决了,打包到服务器上又出现了跨域问题,解决方案就是用nginx配置如下:

	location /api {
           rewrite  ^.+api/?(.*)$ /$1 break;
           include  uwsgi_params;
           proxy_pass   http://localhost:9200; #此处修改为自己的请求地址
        }

记得要重启一下nginx服务器;
这下子问题彻底解决。

Logo

前往低代码交流专区

更多推荐