wx.readBLECharacteristicValue 返回参数的问题
发布于 5 年前 作者 aduan 1984 次浏览 来自 问答

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

```

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` 返回值.

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

回到顶部