openBluetoothAdapter() {
let me = this;
console.log("openBluetoothAdapter")
uni.openBluetoothAdapter({
success(res){
// 状态正常
console.log("success",res)
},
fail(res) {
},
complete(res) {
console.log("初始化蓝牙模块-openBluetoothAdapter", res)
},
})
},
- 发布:2021-09-10 14:29
- 更新:2021-09-10 14:29
- 阅读:598
产品分类: uniapp/App
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: 10.15.0
手机系统: Android
手机系统版本号: Android 10
手机厂商: 小米
手机机型: 小米 10
页面类型: vue
打包方式: 云端
项目创建方式: CLI
CLI版本号: 4.5.0
示例代码:
操作步骤:
onLoad(options){
this.openBluetoothAdapter()
},
methods:{
// 打开蓝牙适配器
openBluetoothAdapter() {
let me = this;
console.log("openBluetoothAdapter")
uni.openBluetoothAdapter({
success(res){
// 状态正常
console.log("success",res)
},
fail(res) {
},
complete(res) {
console.log("初始化蓝牙模块-openBluetoothAdapter", res)
},
})
},
}
onLoad(options){
this.openBluetoothAdapter()
},
methods:{
// 打开蓝牙适配器
openBluetoothAdapter() {
let me = this;
console.log("openBluetoothAdapter")
uni.openBluetoothAdapter({
success(res){
// 状态正常
console.log("success",res)
},
fail(res) {
},
complete(res) {
console.log("初始化蓝牙模块-openBluetoothAdapter", res)
},
})
},
}
预期结果:
打印成功回调结果
打印成功回调结果
实际结果:
没有回调
没有回调
bug描述:
项目运行在手机调试时,打开手机蓝牙后uni.openBluetoothAdapter 没有任何的回调
0 个回复