微信小程序createBLEConnection() { let that = this, if (!that.deviceId) { // 重新初始化蓝牙 that.openBluetoothAdapter(); }报错unknown: Unexpected keyword 'if',解决方法
时间: 2024-03-01 11:51:55 浏览: 84
微信小程序实现BLE蓝牙连接
在代码中,let后面需要加上变量名,同时if语句的末尾应该加上分号,代码应该修改为:
```
微信小程序createBLEConnection() {
let that = this;
if (!that.deviceId) {
// 重新初始化蓝牙
that.openBluetoothAdapter();
}
}
```
阅读全文