老师您好,我的这个请求不到接口是怎么回事,我把json已经放到public下了,用浏览器也访问不到
老师您好,我的这个请求不到接口是怎么回事,我把json已经放到public下了,用浏览器也访问不到
老师您好,我的这个请求不到接口是怎么回事,我把json已经放到public下了,用浏览器也访问不到
2019-12-29
/*** Vue 配置文件* 官方文档:https://cli.vuejs.org/zh/config/#outputdir*/module.exports = {publicPath:'',devServer: { // 设置主机地址host: 'localhost', // 设置默认端口port: 8080, // 设置代理proxy: {'/mock': { // 设置目标API地址target: 'http://localhost:8080', // 如果要代理 websocketsws: false, // 将主机标头的原点改为目标URLchangeOrigin: false/** * 为true时删除/api路径 * changeOrigin:true * /api/test * http://localhost:5000/test * 为false时,保留/api路径 * changeOrigin:false * /api/test * http://localhost:5000/api/test */}}}}
举报