在更新我的Cordova-Android版本后,我在运行我的Cordova项目时遇到了麻烦。
我将proyect从'Cordova-android'3.6.4更新为'Cordova-android'5.2.2
然后我做了一个全新的proyect,用android平台安装了我需要的所有插件。
该应用适用于4.4.2 Android平板电脑。但是当我将系统从我的平板电脑更新到5.1.1(lollypop)时,我对SQLiteplugin有一个很大的问题。
我有这个错误:
Uncaught #<Object> plugins/cordova-sqlite-storage/www/SQLitePlugin.js:336
这是例外
'InvalidStateError: DOM Exception 11: This transaction is already finalized. Transactions are committed after its success or failure handlers are called. If you are using a Promise to handle callbacks, be aware that implementations following the A+ standard adhere to run-to-completion semantics and so Promise resolution occurs on a subsequent tick and therefore after the transaction commits.',
code: 11
我通过npm安装了SQLitePlugin:
cordova plugin add cordova-sqlite-storage
该应用不运行,只有黑屏。我不知道该怎么做。
感谢您的建议!