我无法在我的WP8应用程序中使用Cordova SQLite插件。这个例子不起作用。以下是JS代码
window.sqlitePlugin.openDatabase({ name: 'hello-world.db', location: 'default' }, function (db) {
db.executeSql("select length('tenletters') as stringlength", [], function (res) {
var stringlength = res.rows.item(0).stringlength;
alert('got stringlength: ' + stringlength);
});
});
控制台中显示以下错误:
无法获取未定义或空引用的属性“openDatabase”。 源文件:x-wmapp0:www / js / CreateTableScript.js,行:2无法使用 获取未定义或空引用的属性'querySelector'。资源 文件:x-wmapp0:www / js / index.js,行:41
如何解决这个问题? WP8项目是使用Cordova v6.2.0创建的。