javascript - 如何从 navigator.geolocation 正确调用 stopObserving()?
<p><p>我这样观察用户的位置</p>
<pre><code>_someFunc() {
navigator.geolocation.watchPosition((position) => {
...
)};
}
</code></pre>
<p><code>_someFunc()</code> 在 <code>_onPress()</code> 中调用。在另一个 <code>onPress()</code> 中,我想停止 <code>watchPosition</code>。这样做,我使用 <code>stopObserving</code> 就像(很糟糕?)记录的 <a href="https://facebook.github.io/react-native/docs/geolocation.html" rel="noreferrer noopener nofollow">here</a> .
在另一个 <code>onPress()</code> 上,我只需调用 </p>
<pre><code>_anotherSomeFunc() {
navigator.geolocation.stopObserving();
}
</code></pre>
<p>但是,这给了我<em>警告</em>:</p>
<blockquote>
<p>Called stopObserving without existing subscriptions.</p>
</blockquote>
<p>我不知道该怎么做。什么样的订阅?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>你应该保存 navigator.geolocation.watchPosition 返回的 watchId,然后调用 clearWatch:</p>
<pre><code>watchId = navigator.geolocation.watchPosition((position) => {
...
}
);
</code></pre>
<p>...</p>
<pre><code>navigator.geolocation.clearWatch(watchId);
navigator.geolocation.stopObserving();
</code></pre></p>
<p style="font-size: 20px;">关于javascript - 如何从 navigator.geolocation 正确调用 stopObserving()?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/46405277/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/46405277/
</a>
</p>
页:
[1]