我在本地创建了一个api,地址https://localhost:44310,在vue项目中用axios请求时,明明已经配置了信息,但请求时还是127.0.0.1;而不是https://localhost:44310。请问怎么解决
proxyTable: {
'/api': {
target: 'https://localhost:44310', //请求的地址
changeOrigin: true, //在本地创建虚拟服务端,用于发送和接收消息
pathRewrite: {
'^/api': 'https://localhost:44310' //用来替换target的地址
}
}
},