收藏
回答

socket 在真机bind 为 0?

基础库: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) {
					// console.log(res.message);
					let a = that.newAb2Str(res.message);
					console.log(a);
				})
回答关注问题邀请回答
收藏

3 个回答

  • 社区技术运营专员-Jahozheng
    社区技术运营专员-Jahozheng
    2022-07-18

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2022-07-18
    有用
    回复 2
  • 星火
    星火
    2023-01-05

    问题解决了吗?

    2023-01-05
    有用
    回复
  • Lucky boy
    Lucky boy
    2022-12-07

    请问解决了吗


    2022-12-07
    有用
    回复
登录 后发表内容