收藏
回答

wx.readBLECharacteristicValue 返回参数的问题

这个接口在官方文档列子中如下:


```

wx.readBLECharacteristicValue({  // 这里的 deviceId 需要已经通过 createBLEConnection 与对应设备建立链接  [**new**]
  deviceId: deviceId,  // 这里的 serviceId 需要在上面的 getBLEDeviceServices 接口中获取
  serviceId: serviceId,  // 这里的 characteristicId 需要在上面的 getBLEDeviceCharacteristics 接口中获取
  characteristicId: characteristicId,
  success: function (res) {    console.log('readBLECharacteristicValue:', res.characteristic.value)
  }
})

```


但是真正使用时才发现其实`success`回调中没有 `characteristic` 返回值.

这时一大坑,文档需要更新了。

回答关注问题邀请回答
收藏

1 个回答

  • 陈凡
    陈凡
    2023-10-20

    那怎么得到这个值呢?service的值和characteristic的值如何选择

    2023-10-20
    有用
    回复
登录 后发表内容