中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
Web组件隐私模式下如何以回调方式异步获取隐私模式下指定源的地理位置权限状态。
微信扫码分享
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);