PhoneGap 事务在更改 jQuery Mobile 页面并返回后未触发其第一个参数
在 jQuery Mobile 页面上,我这样调用 PhoneGap Storage 函数:
window.database.transaction(performQuery, error);
它可以工作。我可以使用它几次,而且总是有效。
然后,我使用 jQuery.mobile.changePage() 更改到不同的页面,然后从第二个页面调用history.back() 并返回到原始页面performQuery()
不再被调用。
我在调用 transaction()
之前和之后放置了 alert()
函数,并在 performQuery()
定义的开头放置了一个函数>,但是从第二个页面返回后永远不会到达第三个 alert()
。
我放在第二页上的交易也会发生这种情况。第一次打开第二页时它可以工作,但当我返回前一页然后再次返回第二页时,它就不起作用了。
另请注意,这个问题可能与 另一个问题具有相同的答案,尽管我不能确定。
On a jQuery Mobile page, I call the PhoneGap Storage function like this:
window.database.transaction(performQuery, error);
And it works. I can use it several times, and it always works.
Then, I use jQuery.mobile.changePage()
to change to a different page, then call history.back()
from that second page, and back to the original page performQuery()
does not get called anymore.
I placed alert()
functions both before and after the call to transaction()
, and placed one at the beginning of the definition for performQuery()
, but the third alert()
is never reached after getting back from the second page.
This also occurs with a transaction I put on the second page. It works the first time the second page opens, but it doesn't when I get back to the former page and then back to the second page again.
Also to be noted this question might have the same answer as this other question, although I cannot be sure.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明罪魁祸首是操作系统。据同事反映,Android Honeycomb 在这方面遇到了麻烦,与页面变化有关。
不管怎样,在不同的 Android 设备上一切都按预期工作。
It turns out the culprit is the OS. According to a workmate, Android Honeycomb gives trouble in this regard, something to do with the page change.
Anyway, things work as expected on a different Android device.