wx.createBLEPeripheralServer({
serverId: serverId,
,
serviceId: '0000FFF0-0000-1000-8000-00805F9B34FB', // 自定义服务UUID
success: function(res) {
console.log('添加服务成功');
// 添加特征
// addCharacteristics(serverId, res.serviceId);
},
fail: function(res) {
console.log('添加服务失败', res);
}
});
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
我调用createBLEPeripheralServer后返回的server也是空的,请问楼主是怎么解决的