Vue代理使用

文章描述:

  Vue页面 axios.get(“/index.php”).then( response =&g […]

 

Vue页面

axios.get("/index.php").then(
	response =>{
		console.log("请求成功了",response.data);
	},
	error => {"请求失败了",error.message}
)

 

vue.config.js

http://localhost:10001

//开启代理服务器
devServer: {
	proxy: {
		  '/api': {
			target: 'http://localhost:10002',	// 后台接口地址
			pathRewrite:{'^/api':''},		// 重写路径
			ws: true,				// 如果要代理 websockets,配置这个参数
			changeOrigin: true,			// 是否跨域
		}
	}
}

 

发布时间:2024/09/14

发表评论