我正在使用 Sencha Touch 2.0.1 并尝试使用以下方法打开 SQLite 数据库:
var db = window.openDatabase("mydatabase", "1.0", "mydatabase", 2000000);
在 iPhone/IOS 模拟器上,这是可行的。在 Android 设备或模拟器上出现异常:
TypeError: Object[object DOMWindow] has no method 'openDatabase'
我正在使用 Sencha 构建原生应用程序(尽管我正在迅速失去信心......)所以我没有使用 PhoneGap。
Sencha 的包装创建和 AndroidManifest.xml 文件,但我看不到为
android.permission.WRITE_EXTERNAL_STORAGE
我不确定这是否是问题所在!
非常感谢任何帮助,因为这让我悄悄发疯。
编辑:这是 JS - 它是 Sencha Touch 生成的应用程序的一部分:
Ext.application({
name: 'MyApp',
requires: [
'Ext.MessageBox'
],
views: ['Main'],
icon: {
'57': 'resources/icons/Icon.png',
'72': 'resources/icons/Icon~ipad.png',
'114': 'resources/icons/Icon@2x.png',
'144': 'resources/icons/Icon~ipad@2x.png'
},
isIconPrecomposed: true,
startupImage: {
'320x460': 'resources/startup/320x460.jpg',
'640x920': 'resources/startup/640x920.png',
'768x1004': 'resources/startup/768x1004.png',
'748x1024': 'resources/startup/748x1024.png',
'1536x2008': 'resources/startup/1536x2008.png',
'1496x2048': 'resources/startup/1496x2048.png'
},
launch: function() {
// Destroy the #appLoadingIndicator element
Ext.fly('appLoadingIndicator').destroy();
// Initialize the main view
Ext.Viewport.add(Ext.create('MyApp.view.Main'));
//
try {
var db = window.openDatabase("mydatabase", "1.0", "mydatabase", 2000000);
if ( !db ) {
var m3 = new Ext.MessageBox();
m3.alert("db test!", "openDatabase failed!");
} else {
var m3 = new Ext.MessageBox();
m3.alert("db test!", "openDatabase ok!");
}
}
catch(err){
var m2 = new Ext.MessageBox();
m2.alert("db test!", "exception caught: " + err.name + ":" + err.message);
}
}
});