PhoneGap 嵌套的executeSql 在iPad 模拟器中不起作用

发布于 2025-01-03 08:31:50 字数 605 浏览 0 评论 0原文

不知何故,我的应用程序在 Win-Safari 中完美运行,但在由 PhoneGap 包装时却无法正常运行。这是片段:

// working db connection
db.transaction(function(tx) {
  tx.executeSql('SELECT * FROM tbl', [], function(tx, rs){
    // do something with the result

    tx.executeSql('SELECT * FROM another_tbl', [], function(txTwo, rsTwo){
      // do something with the result

      // further nesting ...

    }, errorHandler, successHandler);

  }, errorHandler, successHandler);
}

第一个结果集是正确的,我可以 console.log() 数据。但之后,我无法访问第二个嵌套查询的数据。

我没有收到任何错误,也没有调用我的处理程序(例如 errorHandler)。有趣的是,它在 Safari (Win 7) 上不会造成任何问题

Somehow my application works perfectly in Win-Safari, but somehow not when wrapped by PhoneGap. This is the snippet:

// working db connection
db.transaction(function(tx) {
  tx.executeSql('SELECT * FROM tbl', [], function(tx, rs){
    // do something with the result

    tx.executeSql('SELECT * FROM another_tbl', [], function(txTwo, rsTwo){
      // do something with the result

      // further nesting ...

    }, errorHandler, successHandler);

  }, errorHandler, successHandler);
}

The first resultSet is correct and I can console.log() the data. But after that, I am not able to access the data of the second nested query.

I don't get any errors and non of my handlers are called (e.g. errorHandler). The funny thing is, that it does not cause any problems on Safari (Win 7)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不一样的天空 2025-01-10 08:31:50

我也遇到过同样的问题。我通过在第一次调用executeSql 的回调中嵌套另一个事务来使其工作(我认为这非常难看,但就这样吧)。

context.db.db.transaction(function(tx) {
    tx.executeSql("SELECT coalesce(sum(pointsawarded),0) as points from eventhistory ", [], function(tx, res) {
        alert('h1' + JSON.stringify(res));
        context.db.db.transaction(function(txsafe) {
            txsafe.executeSql("SELECT coalesce(sum(pointsawarded),0) as points2 from eventhistory ", [], function(tx2, res2) {
                alert('h2' + JSON.stringify(res2));
            });
         });
     });
});

I've had this same problem. I have gotten it working by nesting another transaction inside the callback for the first call to executeSql (which I think is terribly ugly, but so be it).

context.db.db.transaction(function(tx) {
    tx.executeSql("SELECT coalesce(sum(pointsawarded),0) as points from eventhistory ", [], function(tx, res) {
        alert('h1' + JSON.stringify(res));
        context.db.db.transaction(function(txsafe) {
            txsafe.executeSql("SELECT coalesce(sum(pointsawarded),0) as points2 from eventhistory ", [], function(tx2, res2) {
                alert('h2' + JSON.stringify(res2));
            });
         });
     });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文