PhoneGap 事务在更改 jQuery Mobile 页面并返回后未触发其第一个参数

发布于 2024-12-29 12:04:31 字数 658 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝眸 2025-01-05 12:04:31

事实证明罪魁祸首是操作系统。据同事反映,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文