uni-app如何获取到接收的数据
uni-app如何获取到接收的数据
获取服务器返回数据示例
客户端代码
onRecMsg(tAaa, tBbb) {
console.log("Udp 接收数据完成!", tAaa, tBbb)
},
onDirctSendMsg() {
let ip = '192.168.4.240'
let port = 8216
let send = 'A8200301'
console.log('udpClientXNetLib.sendUdpMsg ...000000411.....:', ip, port, send );
udpClient.send({
ip: ip,
port: port,
msg: send,
hex: true, // 是否使用 hexString,默认为 false
}, this.onRecMsg);
}
3 回复
我写了一个安卓的udp插件,如果可以帮到你的话,回我一下就可以。(不收费,写的比较简陋)
//发送
udpClient.send({
ip: ip,
port: port,
msg: send,
hex: true, // 是否使用 hexString ,默认为 false
}, (res) => {
this.onRecMsg(res)
});
//发送后服务器返回
onRecMsg( res ){
console.log(“Udp 接收数据完成!”, res)
},