uni-app 用户地理位置授权
生活随笔
收集整理的這篇文章主要介紹了
uni-app 用户地理位置授权
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
許多小程序授權的時候 有的會點擊取消授權,這就要打開設置重新授權了
onShow() {this.Autho()}, //授權 Autho() {var that = thisuni.authorize({scope: 'scope.userLocation', success(res) {that.lat()},// 授權失敗fail(err) {err = err['errMsg']uni.showModal({title: '溫馨提示',content: '為享受小程序功能,您必須授權!',showCancel: false,confirmText: '確認授權'}).then(res => {if (res[1]['confirm']) {uni.openSetting({success(res) {}})}})}}) }, //獲取經(jīng)緯度 lat() {var that = thisuni.getLocation({type: 'wgs84',success: function(res) {that.longitude = res.longitudethat.latitude = res.latitude},fail: function(res) {console.log(res);that.showToast('請檢查定位是否已開啟')}}); },總結
以上是生活随笔為你收集整理的uni-app 用户地理位置授权的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: HEVC/H265 性能分析
- 下一篇: uni-app实现传值路径乱码的问题