收藏
回答

安卓机型为什么蓝牙偶尔连接不上,?ios可以瞬间链接?

最后一次编辑于  07-29
回答关注问题邀请回答
收藏

1 个回答

  • 小胖
    小胖
    07-29

    安卓要地理位置授权

    wx.getSetting({

          success: function (res) {

            console.log(res)

            if (!res.authSetting['scope.userLocation']) {

              wx.authorize({

                scope: 'scope.userLocation',

                complete: function (res) {

                  //获取蓝牙设备信息方法


                }

              })

            } else {

              //获取蓝牙设备信息方法


            }

          }

        })


    07-29
    有用
    回复
登录 后发表内容