// 在request中
import axios from “axios”;
export function request(config) {
// 1. 创建axios的实例
const instance = axios.create({
baseURL: “/api”,
timeout: 5000
});
// 在 vue.config.js中
const vueConfig = {
devServer: {
// development server port 8000
port: 8080,
// If you want to turn on the proxy, please remove the mockjs /src/main.jsL11
proxy: {
“/api”: {
target: “https://www.baidu.com”,
ws: false,
changeOrigin: true,
pathRewrite: {
“^/api”: “”
}
}
}
}
};
module.exports = vueConfig;
// 此时所有 8080 本地服务 请求均会转发到 /api + 自己写后面的
// 而/api 就是 要跨域访问的地址 https://www.baidu.com + 自己写后面的