请问小程序通过wx.openBluetoothAdapter方法开启外设模式后怎样配置服务和特征?
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); } }); 苹果真机测试调用后没有添加服务成功的回调