1.原理:绕过浏览器上的域名限制,通过代理服务器,进行连接
2
2.设置两个get请求
export default {
name: "Home",
components: {},
methods: {
async getApi() {
let res = await axios.get("community/square?start=7&limit=10");
console.log(res);
},
async getApi1() {
let res = await axios.get(
"rest/statistics/stat?value=[{%22app_name%22:%22Chrome%22,%22page%22:%22MIBBS_MyBoard%22,%22stayTimeInMs%22:0,%22itemDataList%22:[{%22itemName%22:%22MIBBS_MyBoard_exposure_page%22}]}]"
);
console.log(res);
},
},
mounted() {
//dgetApi();
this.getApi();
this.getApi1();
},
};
3.在vue.config.js文件设置两个代理服务器
// module.exports = {
// devServer: {
// //设置开发服务器,将未知接口转发到哪一个服务器上
// proxy: 'https://prod.api.xiaomi.cn/'
// }
// }
module.exports = {
devServer: {
proxy: {
'/community': {
target: 'https://prod.api.xiaomi.cn/',
changeOrigin: true
},
'/rest': {
target: 'https://prod.api.xiaomi.cn/'
}
}
}
}
结果: