我正在使用react-native-ble-plx在我的应用程序中实现蓝牙
蓝牙扫描效果很好,但是它在android中包含重复项,而在iOS中则很好,因为allowDuplicates在iOS中默认为false。
在android中,默认值为true。请提供解决方案,以使用react-native-ble-plx的allowDuplicates属性过滤掉重复项
文档startDeviceScan的语法:-
bleManager.startDeviceScan(
UUIDs: ?Array<UUID>,
options: ?ScanOptions,
listener: (error: ?Error, scannedDevice: ?Device) => void
)
https://github.com/Polidea/react-native-ble-plx/wiki/Bluetooth-Scanning
我的代码:-
this.manager.startDeviceScan(null, {allowDuplicates:false}, (error, device) => {
//2nd parameter is scanOptions
if (error) {
// Handle error (scanning will be stopped automatically)
return
}
this.state.count++
if(this.state.count>10)
{
this.manager.stopDeviceScan();
}
console.log("id",device.id)
}
请告知语法错误是否仍然存在
答案 0 :(得分:0)
此设置仅适用于iOS,也不会阻止重复显示。您必须使用一组或等效项以确保在您的应用中仅显示/使用唯一的
答案 1 :(得分:0)
我使用包含已建立设备名称的列表,并使用 includes()
方法检查重复项
refreshScreen(device){
if(!this.state.dataNames.includes(device.name)){
let dataNow = this.state.data;
dataNow.push(element);
let names = this.state.dataNames;
names.push(element.name);
this.setState(
{
refreshing: false,
data: dataNow,
dataNames: names,
}
);
}
}
此函数添加不在列表中的设备dataNames