输入关键字或相关内容进行搜索
搜索:
发布问题
H5运行,和app真机运行,发送axios请求不携带cookie,是uniapp的原因,还是适配器有部分配置问题呢?
没有找到相关结果
g***@163.com
同样碰到这个问题~
y***@163.com (作者)
这个已解决。在main.js中设置axios.defaults.baseURL = 'http://localhost:9003/';然后再vue.config.js中设置module.exports = { devServer: { proxy: { //配置跨域,只要在post,get后面看到了xymjdbc,就会替换为target那里的网址,定位到后台去 'http://localhost:9003/': { target: 'http://localhost:9003/', ws: true, //如果要代理 websockets,配置这个参数 secure: false, //如果是https接口,需要配置这个参数 changeOrigin: true, //允许跨域 pathRewrite: { '^http://localhost:9003/': '' } //路径重写.检查代理的请求中是否有 /api ,有的话把 /api 替换为冒号后面的内容,案例为替换成空字符串,也就是删去 /api } } } } 就能解决cookie问题
2024-01-25 16:12
要回复问题请先登录或注册
y***@163.com (作者)
这个已解决。在main.js中设置axios.defaults.baseURL = 'http://localhost:9003/';然后再vue.config.js中设置module.exports = {
devServer: {
proxy: { //配置跨域,只要在post,get后面看到了xymjdbc,就会替换为target那里的网址,定位到后台去
'http://localhost:9003/': {
target: 'http://localhost:9003/',
ws: true, //如果要代理 websockets,配置这个参数
secure: false, //如果是https接口,需要配置这个参数
changeOrigin: true, //允许跨域
pathRewrite: {
'^http://localhost:9003/': ''
} //路径重写.检查代理的请求中是否有 /api ,有的话把 /api 替换为冒号后面的内容,案例为替换成空字符串,也就是删去 /api
}
}
}
}
就能解决cookie问题
2024-01-25 16:12