Bootstrap

Vue解决跨域问题

  1. 打开config/index.js,在proxyTable中添写如下方法代码

     proxyTable: {
          // 配置跨域
          '/api': {
            target: 'http://localhost:8888',
            ws: true,
            changOrigin: true,  // 允许跨域
            pathRewrite: {
              '^/api': ''
            }
          }
        }
    
  2. 使用axios请求数据时使用“/api”接口的代码

    export const queryAttributeList = query => {
        return request({
            url: 'api/attribute',
            method: 'get',
            params: query
        });
    };
    
;