在继续之前,如何等待cordova.plugins.sqlitePorter.exportDbToSql完成?

时间:2019-10-29 13:44:55

标签: javascript android cordova ionic-framework

通过使用SQLite Porter Cordova / Phonegap插件,我试图在继续执行代码之前创建应用程序数据库的备份文件。

但是,我无法做到这一点,因为它是异步的,无论我尝试什么,它总是在SuccessFn函数执行之前完成,即使SuccessFn有点像回调。

我已经尝试过使用promisses,等待/异步无济于事。我最后的尝试是使用promise,如下例所示。

var successFn = function (sql, count) {
               console.log("Success")
            };
var promise = new Promise(function (resolve, reject) {
    cordova.plugins.sqlitePorter.exportDbToSql(db, {
         successFn: successFn
    })
});
promise.then(
    function () { return true; },
    function (erro) { return false;}
);
console.log("END");

我期望日志的顺序为“成功”,然后为“ END”,但返回“ END”,然后为“成功”

1 个答案:

答案 0 :(得分:0)

更新

在使用Ionic 1时,您可以将函数包装为promise并使用它:

function exportDbToSql() {
  var deferred = $q.defer();
  cordova.plugins.sqlitePorter.exportDbToSql(db, {
    successFn: function(sql, count) { 
      deferred.resolve({sql: sql, count: count}) 
    }
  });
  return deferred.promise;
}

当您调用该函数时,它将是:

exportDbToSql().then(function(result) {
  console.log(result.sql);
  console.log(result.count);    
});

旧答案

如果您使用的是Ionic 2+,则可以遵循其文档here

打开命令行并输入

ionic cordova plugin add uk.co.workingedge.cordova.plugin.sqliteporter
npm install @ionic-native/sqlite-porter

然后您可以通过以下方式使用它:

import { SQLitePorter } from '@ionic-native/sqlite-porter/ngx';


constructor(private sqlitePorter: SQLitePorter) { }

...

let db = window.openDatabase('Test', '1.0', 'TestDB', 1 * 1024);
// or we can use SQLite plugin
// we will assume that we injected SQLite into this component as sqlite
this.sqlite.create({
  name: 'data.db',
  location: 'default'
})
  .then((db: any) => {
    let dbInstance = db._objectInstance;
    // we can pass db._objectInstance as the database option in all SQLitePorter methods
  });


let sql = 'CREATE TABLE Artist ([Id] PRIMARY KEY, [Title]);' +
           'INSERT INTO Artist(Id,Title) VALUES ("1","Fred");';

this.sqlitePorter.importSqlToDb(db, sql)
  .then(() => console.log('Imported'))
  .catch(e => console.error(e));

对于您来说,它应该像这样工作:

this.sqlitePorter.exportDbToSql(db)
  .then(() => console.log('success'))
  .catch(() => console.log('error'))