BLEPeripheralServer.onCharacteristicUnsubscribed(function callback)
仅 IOS 支持 且基础库版本 >=
3.81.0
。
监听取消特征订阅事件,仅 iOS 支持。
参数
function callback
取消特征订阅事件的回调函数
Object res
属性 | 类型 | 说明 | 版本 |
---|---|---|---|
serviceId | String | 蓝牙特征对应服务的 UUID | |
characteristicId | String | 蓝牙特征的 UUID |
示例代码
peripheralServer.onCharacteristicUnsubscribed(function (res) {
console.log('onCharacteristicUnsubscribed', res)
})