当前位置:   article > 正文

uni-app 获取小程序定位授权状态_uni.getsetting定位

uni.getsetting定位

获取小程序定位授权状态:1 否 2 是

getLocationAuthorize(){
				return new Promise((resolve,reject)=>{
					//获取用户的当前设置
					uni.getSetting({
						success:(res)=>{
							//判断是否有定位授权scope.userLocation,true表示已授权
							if (!res.authSetting['scope.userLocation']) {
								//提前向用户发起授权请求。调用后会立刻弹窗询问用户是否同意授权小程序使用某项功能或获取用户的某些数据,但不会实际调用对应接口。如果用户之前已经同意授权,则不会出现弹窗,直接返回成功。如果用户之前拒绝了授权,此接口会直接进入失败回调
								uni.authorize({
									scope: 'scope.userLocation',
									success:()=>{
										resolve(2)
									},
									fail:()=>{
										//根据缓存判断只显示一次跳转设置页授权的弹框
										let locationAuth = uni.getStorageSync('locationAuth');
										if (!locationAuth&&err.errMsg == 'authorize:fail auth deny') {
											uni.setStorageSync('locationAuth',true);
											uni.showModal({
												title: '授权提示',
												content: '是否允许获取定位权限',
												success: (resp) => {
													if (resp.confirm) {
														//调起客户端小程序设置界面,返回用户设置的操作结果。
														uni.openSetting({
															success(
																settingdata
															) {
																//用户设置定位权限
																if (settingdata
																	.authSetting[
																		"scope.userLocation"
																	]) {
																	resolve(2)
																} else {
																	resolve(1)
																}
															}
														})
													} else {
														//取消弹框
														resolve(1)
													}
												}
											})
									  }
									}
								})
							} else{
								resolve(2)
							}
						}
					});
				})
			},
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/548567
推荐阅读
相关标签
  

闽ICP备14008679号