基础库:2.25.0 手机:安卓和ios都不可以
UDPSocket.bind(number port) 在开发者工具没问题,但在真机显示值为0, UDPSocket.close()也报错
this.udpSocket = uni.createUDPSocket();
if (this.udpSocket === null) {
console.log('暂不支持');
return;
}
setTimeout(() => {
const locationPort = this.udpSocket.bind(10012)
console.log(locationPort);
},1000)
this.udpSocket.onListening(function(res){
console.log('监听中.......');
console.log(res);
})
this.udpSocket.onError(function(res) {
console.log(res);
})
this.udpSocket.onMessage(function(res) {
let a = that.newAb2Str(res.message);
console.log(a);
})
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
问题解决了吗?
请问解决了吗