新交易正在等待开放操作

时间:2016-03-05 03:54:29

标签: ios angularjs sqlite cordova onsen-ui

我正在使用cordova + angular.js + onsenui创建移动应用。

我想要做的是打开预先填充的数据库,执行select语句并将结果显示为列表。 我使用[Root] AddTrust External CA Root插件来操作数据库。

但是当我使用iOS模拟器运行应用程序并在Safari控制台中查看日志时,"新事务正在等待打开操作"已记录。

控制台日志如下:

  

数据库已经打开:test.db

     

TEST1

     

新交易正在等待开放操作

     

DB已打开:test.db

我的代码(index.js)如下。

angular.module('app').controller('listController', function ($scope) {


    var items = [];
    ons.ready(function() {
        db = sqlitePlugin.openDatabase({name: "test.db", location: 2, createFromLocation: 1});
        console.log('test1');

        db.readTransaction(function(tx) {
            console.log('test2');
            var sql = "SELECT id, title, status FROM items";
            tx.executeSql(sql, [], function(tx, response) {
                for (var i = 0; i < response.rows.length; i++) {
                    var row = response.rows.item(i);
                    items.push({title:"Item Title", label:"6h", desc:row.title});
                }
            }, function(error) {
                console.log('SELECT error: ' + error.message);
            });
        }, errorCB, successCB);
    });

    function successCB() {
        $scope.itemTable = items;
        $scope.$apply();
    }

    function errorCB(err) {
        alert("Error processing SQL: "+err.code);
    }

    $scope.showDetail = function(item) {
        console.log('showDetail');
        myNavigator.pushPage("detail.html", {item: item});
    };
});

有谁知道如何解决这个问题?

我感谢任何建议和提示。

1 个答案:

答案 0 :(得分:2)

对于遇到同样问题的人, 我写了我的解决方案。

我将插件更改为以下内容。

我的代码如下所示。

function onDeviceReady() {
    // Handle the Cordova pause and resume events
    document.addEventListener( 'pause', onPause.bind( this ), false );
    document.addEventListener( 'resume', onResume.bind( this ), false );
    dbcopy();
}

function dbcopy()
{
    window.plugins.sqlDB.copy("test.db", 0, copysuccess, copyerror);
}

function copysuccess()
{
    //open db and run your queries
    //alert('copysuccess');
    openDatabase();
}

function openDatabase()
{
    db = window.sqlitePlugin.openDatabase({name: "test.db"});
}

function copyerror(e)
{
        //db already exists or problem in copying the db file. Check the Log.
    console.log("Error Code = "+JSON.stringify(e));
    //e.code = 516 => if db exists
    if (e.code == '516') {
        openDatabase();
    }
}

angular.module('app').controller('listController', function ($scope) {

    var items = [];
    ons.ready(function() {
        if (db === null) {
            openDatabase();
        }
        db.transaction(function(tx) {
            var sql = "SELECT * FROM items;";
            tx.executeSql(sql, [], function(tx, response) {
                for (var i = 0; i < response.rows.length; i++) {
                    var row = response.rows.item(i);
                    items.push({title:row.title, label:row.label, desc:row.desc});
                }
                console.log("res.rows.item(0).title: " + response.rows.item(0).title);
            }, errorCB);
        }, errorCB, successCB);
    });

    function successCB() {
        $scope.itemTable = items;
        $scope.$apply();
    }

    function errorCB(err) {
        alert("Error processing SQL: "+err.message);
    }

    $scope.showDetail = function(item) {
        console.log('showDetail');
        myNavigator.pushPage("detail.html", {item: item});
    };
});