官方相关例程
https://developers.weixin.qq.com/s/m7klFDmZ72i1
里面有部分代码有些疑问
startBluetoothDevicesDiscovery() {
if (this._discoveryStarted) {
return
}
this._discoveryStarted = true
wx.startBluetoothDevicesDiscovery({
allowDuplicatesKey: true,
success: (res) => {
console.log('startBluetoothDevicesDiscovery success', res)
this.onBluetoothDeviceFound()
},
})
},
这是开启蓝牙搜索的官方例程,
其中this._discoveryStarted不能理解,这个变量是哪里来的,看不到,我打印的时候提示未定义,这是怎么回事?
其中allowDuplicatesKey这个变量我找到了出处,是函数的参数,不知道算不算全局的,可以直接这样用吗?需不需要什么前缀?
比如 startBluetoothDevicesDiscovery.allowDuplicatesKey
请各位大佬帮忙指导一下