ios - IONIC 2 - 每次打开应用程序时都会询问或获得地理位置
<p><p>我正在使用 ionic <code>Geolocation</code> 库来获取用户当前位置。
当我每次请求许可时打开应用程序。我使用以下代码从用户那里获取当前位置。 </p>
<pre><code>let options = {timeout: 20000, enableHighAccuracy: true , maximumAge: 0};
this.geolocation.getCurrentPosition(options).then((resp) => {
})
</code></pre>
<p>你能帮我解释一下为什么它每次都请求许可吗? </p>
<p>谢谢</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>这可能是因为在调用请求用户位置的代码之前 Ionic 平台可能尚未完全准备好。
<a href="https://forum.ionicframework.com/t/cordova-plugin-geolocation-location-access-prompt-appears-twice/69357" rel="noreferrer noopener nofollow">See this Ionic forum discussion.</a> </p>
<p>Ionic-Native 地理定位插件,它使用本地设备位置权限并且只设置一次,并且运行 Ionic Cordova 应用程序的浏览器窗口都要求用户许可。 </p>
<p>在我的情况下,我假设你的情况,每次启动时显示的警报都会引用浏览器“容器”和“index.html”,表明它是浏览器请求许可。特定于应用的警报仅在安装后首次启动时显示一次。</p>
<p>我遇到了同样的问题,即在启动后立即出现的模式中调用地理定位服务。我的解决方案是:</p>
<ol>
<li><p>将 <code>Platform</code> 从 ionic-angular 注入(inject)到组件中
发出地理定位请求,然后 </p></li>
<li><p>将我的地理定位调用封装在 <code>platform.ready().then()</code> 中,以确保
它只在平台“准备就绪”之后运行。</p></li>
</ol>
<p>这删除了重复的警报,它只在首次启动后立即询问一次。 </p>
<pre><code> import { Component, OnInit } from '@angular/core';
import { Platform } from 'ionic-angular';
import { Geolocation } from '@ionic-native/geolocation';
constructor(private platform: Platform, private geo: Geolocation) {}
ngOnInit() {
this.setLocation();
}
setLocation() {
this.platform.ready().then(() => {
return this.geo.getCurrentPosition()
.then(pos => {//do stuff w/position});
});
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - IONIC 2 - 每次打开应用程序时都会询问或获得地理位置,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/45816406/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/45816406/
</a>
</p>
页:
[1]