UDPSocket.onMessage 在不先调用 UDPSocket.send 无法接受消息
that.udpSocket = wx.createUDPSocket();
that.udpSocket.bind(35675);
that.udpSocket.send({
address: '192.168.1.120',
port: 54321,
message: "hello world!"
});
that.udpSocket.onListening(function(res) {
console.log(res);
});
that.udpSocket.onMessage(function(res) {
console.log(res.message);
console.log(res.remoteInfo.address);
console.log(res.remoteInfo.port);
console.log(res.remoteInfo.size);
});
//基础库2.10.2
2022了,我还遇到onMessage收不到东西的的问题。。
我也遇到只能发送信息,UDP接收不到任何信息?
我也遇到
小程序送包接收到,也分析出送此包的IP地址和端口,根据此IP地址和端口回送信息,
小程序虽然收到了(size对的),但是res.message没有任何信息(明明设置了数据)。
你好,请提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)