Web组件隐私模式下如何以回调方式异步获取隐私模式下指定源的地理位置权限状态。

Web组件隐私模式下如何以回调方式异步获取隐私模式下指定源的地理位置权限状态。

HarmonyOS
2024-08-06 18:39:18
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
milchcow
Web({ src: 'www.example.com', controller: this.controller,
隐私模式开启
})

// getAccessibleGeolocation第三个参数表示隐私模式(true)或非隐私模式(false)下,以回调方式异步获取指定源的地理位置权限状态。
web_webview.GeolocationPermissions.getAccessibleGeolocation( "file:///", (error, result) => {
  if (error) {
    console.log('getAccessibleGeolocationAsync error: ' + JSON.stringify(error));
    return;
  }
  console.log('getAccessibleGeolocationAsync result: ' + result);
}, true);
分享
微博
QQ
微信
回复
2024-08-06 20:17:05
相关问题
如何清除Web隐私模式所有cookie。
521浏览 • 1回复 待解决
HarmonyOS web使用隐私模式
486浏览 • 1回复 待解决
设置禁止截屏隐私模式
1321浏览 • 1回复 待解决
隐私模式设置后窗口是如何展示
1879浏览 • 1回复 待解决
stagemode 模式如何获取version信息?
1981浏览 • 0回复 待解决
MySQL 如何按照地理位置排序?
2748浏览 • 1回复 待解决
获取安全地理位置信息接口实现
397浏览 • 1回复 待解决