Simon

Results 28 comments of Simon

> @kang558 hi,域名已经换到[https://jsplayground.taobao.org了](https://jsplayground.taobao.org%E4%BA%86) 还是打不开。

Same problem in `v4.5.1`. 1. Close the first modal and open the second modal 2. Close the second modal, the first modal pops up automatically My temporary solution is to...

> What are you using .watchPosition for? Timing use `. watchPosition ` to obtain the latitude and longitude of the current device.

> Yes, that’s obvious. But why specifically .watchPosition? That method is meant for short periods of time while your app is in the foreground. You do **not** need to use...

I have such needs here: Whether it is the foreground or the background, record longitude and latitude once in 10 seconds and submit api once in 1 minute.

> .watchPosition is not designed for long-term use in the background. > > call .changePace(true) and implement your own timer to call .getCurrentPosition OK, thank you, I'll continue to study...