getApp().globalData.socketTask = uni.connectSocket({
url: 'ws://192.168.10.19:3002/api/chat_message',
header: {
'content-type': 'application/json',
'Authorization': 'Bearer ' + that.$store.state.token,
},
success: (res) => {
console.log('connectSocket success' + JSON.stringify(res) )
},
fail: (res) => {
console.log('connectSocket fail' + res)
}
});
在微信中正常,服务器可以接收到,但是在抖音小程序环境里就接收不到header里的内容
5***@qq.com (作者)
测试环境可以用ws,直接用tt.connectSocket,里面加header试了也不行
2023-11-22 15:23