http://iwenwiki.com/api/blueberrypai/getBlueBerryJamInfo.php
查看页面响应信息,提示跨域有问题
根目录写入以下vue.config.js
// vue.config.js
module.exports = {
devServer: {
proxy: {
// 配置跨域
‘/api‘: {
target: ‘http://iwenwiki.com‘,
ws: true,
changOrigin: true,
pathRewrite: {
‘^/api‘: ‘‘
}
}
}
},
}
配置完成之后一定要重启(重点!!!)
原文:https://www.cnblogs.com/hghua/p/13290568.html