我正在使用android-cordova-ionic和ngCordova sqlite。
我收到错误数据库位置或iosDatabaseLocation值现在在设备上的openDatabase调用中是必需的。
我运行的示例https://github.com/teerasej/Ionic-Example-SQLite工作正常但是当我将代码移动到我的应用程序时,会出现上述错误。
try {
db = $cordovaSQLite.openDB({name:"nextflow.db",location:'default'});
} catch (error) {
alert(error);
}
是否有任何配置错误?