收藏
回答

Android手机 蓝牙发现不了设备

使用android调试,搜索不到设备,一直都不会执行onBluetoothDeviceFound的回调openBluetoothAdapter执行成功了,startBluetoothDevicesDiscovery也执行成功了,微信的全部权限都打开了,也重启手机了,都不行。代码:

onLoad: function (options) {

       var page = this;

       wx.openBluetoothAdapter({

           success: function (res) {

               wx.onBluetoothAdapterStateChange(function (res) {

                   console.log(`adapterState changed, now is`, res)

               })

           },

           fail: function (res) {

           }

       });


       wx.onBluetoothDeviceFound(devices => {

           console.log('new device list has founded', devices);

       });


       wx.startBluetoothDevicesDiscovery({

           services: [],

           success: function (res) {

               console.log('startBluetoothDevicesDiscovery: success => ', res);

           },

           fail: function (res) {

               console.log('fail => ', res)

           }

       });



   },


回答关注问题邀请回答
收藏

4 个回答

  • sinyi怡
    sinyi怡
    2018-05-14

    代码要放在openBluetoothAdaptersuccess 回调去startBluetoothDevicesDiscovery才行吧?

    openBluetoothAdapter是异步的,然后你按顺序写,会导致openBluetoothAdapter未成功,就先调用了startBluetoothDevicesDiscovery,导致扫描失败

    2018-05-14
    有用
    回复 2
    • 半夏、微凉🍄
      半夏、微凉🍄
      2018-07-27

      不关掉小程序,onBluetoothDeviceFound 安卓的只执行一次,有啥办法能解决吗?


      2018-07-27
      回复
    • sinyi怡
      sinyi怡
      2019-03-29

      为什么要回调多次,是获取设备信息吗?

      你可以在onBluetoothDeviceFound后,把设备缓存在内存中。




      2019-03-29
      回复
  • 阿旺
    阿旺
    2018-03-01

    定位打开了么?有的需要打开定位。

    2018-03-01
    有用
    回复
  • 风一样
    风一样
    2018-01-04

     是不是微信的蓝牙功能,不完善哟

    2018-01-04
    有用
    回复
  • 星泽^
    星泽^
    2018-01-04

    同样问题,就扫描到一次,其余都没有扫描到设备。蓝牙信息discovering始终都是false

    2018-01-04
    有用
    回复
登录 后发表内容