资源说明:解决方法:
在vue项目的根目录下添加 vue.config.js文件,文件中需要按照下面写法来写
module.exports = {
lintOnSave: true,
devServer: {
proxy: {
// proxy all requests starting with /api to jsonplaceholder
'/api': {
target: 'http://localhost:8080', //代理接口
changeOrigin: true,
pathRewrite: {
'^/api': '/mock' //代理的路径
}
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。