随手vue笔记 (三)
作者:互联网
随手vue笔记 (三)
1、代理服务器 解决跨域问题 vue.config.js
在vue根目录下新建一个 vue.config.js文件 ,文件内容如下:
module.exports={ page:{ index:{ //入口 entry:'src/main.js' } }, lintOnSave:false, //关闭语法检查 //开启代理服务器 devServer:{ proxy:'http://localhost:5000' //后台地址 } }
页面请求内容
//前台页面内容 axios.get('http://localhost:5000/student').then(res=>res.data) //注意这里不能是用5000了,改成8080 axios.get('http://localhost:8080/student').then(res=>res.data)
标签:5000,随手,res,笔记,js,vue,http,localhost 来源: https://www.cnblogs.com/youmingkuang/p/16470791.html