if(wx.canIUse('createUDPSocket'))
{
console.log('可以使用createUDPSocket')
}
else
{
console.log('不可以使用createUDPSocket')
}
const udp = wx.createUDPSocket()
console.log('udp:', udp)
udp.bind()
udp.send({
address: '255.255.255.255',
port: 8848,
message: 'hello, how are you'
})
实测IP地址不能广播也就是说你的IP为 192.168.1.3 ,你不能向192.168.1.255发数据
不能跨网段 发送192.168.2.x 192.168.3.x这类跨网段的,对方收不到
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
我的是iPhone7
代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)麻烦提供下
f(wx.canIUse('createUDPSocket'))
{
console.log('可以使用createUDPSocket')
}
else
{
console.log('不可以使用createUDPSocket')
}
const udp = wx.createUDPSocket()
console.log('udp:', udp)
udp.bind()
udp.send({
address: '255.255.255.255',
port: 8848,
message: 'hello, how are you'
})
(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)麻烦提供下可运行的代码片段
开发工具 2.7.1 版本可以使用
canIUse 判断有问题,请先忽略,接口是可用的
如果是在客户端调试,请不要用真机调试而是直接预览