wx.getLocation在华为nova不兼容
发布于 7 年前 作者 yantian 5395 次浏览 来自 问答
  • 当前 Bug 的表现(可附上截图)

华为nova3 手机不兼容 wx.getLocation接口: 错误信息:errCode: 404, errMsg: “getLocation:fail:ERROR_SERVER_NOT_LOCATION”

  • 预期表现

期望兼容机型

  • 复现路径

机型:

try {
      console.log('start')
      wx.getLocation({
        type: 'gcj02',
        altitude: false,
        success(res) {
          console.log(res)
          const latitude = res.latitude
          const longitude = res.longitude
          const speed = res.speed
          const accuracy = res.accuracy
        },
        fail (res) {
          console.log('fail', res)
        }
      })
    } catch(e){
      console.log('catch', e)
    }

  • 提供一个最简复现 Demo
回到顶部