我正在vs2015开发Angularjs应用程序。
我想通过工厂函数在websql中打开数据库。在ripple模拟器中测试应用程序时,它可以完美运行(在Android操作系统版本4.4及更高版本中也能完美运行)但是在Android操作系统版本4.2及更低版本中测试应用程序时会抛出security_err dom exception 18
。
另一个奇怪的是,当我使用相同的数据库时,我在简单的java脚本文件中打开它在ripple和所有设备中都能很好地工作。
这是我的工厂代码:
angular.module('InnkeyAlert.services', ['InnkeyAlert.config'])
// DB wrapper
.factory('DB', function ($q, DB_CONFIG) {
try {
var self = this;
self.db = null;
self.init = function () {
alert("DB init start!");
// Use self.db = window.sqlitePlugin.openDatabase({name: DB_CONFIG.name}); in production
self.db = window.openDatabase(DB_CONFIG.name, '1.0', 'database', -1);
alert("DB open!");
angular.forEach(DB_CONFIG.tables, function (table) {
var columns = [];
angular.forEach(table.columns, function (column) {
columns.push(column.name + ' ' + column.type);
});
var query = 'CREATE TABLE IF NOT EXISTS ' + table.name + ' (' + columns.join(',') + ')';
self.query(query);
//console.log('Table ' + table.name + ' initialized');
});
alert("table created !");
};
return self;
} catch (e) {
//alert("Db factory: "+e.message);
}
})
这是我的index.js文件代码:
var app = {
// Application Constructor
initialize: function () {
this.bindEvents();
},
// Bind Event Listeners
//
// Bind any events that are required on startup. Common events are:
// 'load', 'deviceready', 'offline', and 'online'.
bindEvents: function () {
alert("hi");
document.addEventListener('deviceready', this.onDeviceReady, false);
},
// The scope of 'this' is the event. In order to call the 'receivedEvent'
// function, we must explicitly call 'app.receivedEvent(...);'
onDeviceReady: function () {
app.receivedEvent('deviceready');
alert("Device ready end...");
try {
angular.injector(['InnkeyAlert']).get('DB').init();
alert("inti db called...");
} catch (e) {
alert("index 101: " + e.message);
}
},
// Update DOM on a Received Event
receivedEvent: function (id) {
}
};
答案 0 :(得分:0)
Android版本中的问题低于4.4。已经回答here:
您可以在WebView中使用来自file:// URL的Web SQL。科尔多瓦人设法做到了。你必须做三件事:
1)调用setDatabaseEnabled()(duh):
2)设置数据库文件路径。是的,这在Android 4.4中已被弃用,但如果您想要避免预先Kitkat中的DOM异常18,则需要它:
3)设置onExceededDatabaseQuota处理程序。是的,它在Android 4.4中被弃用了,等等等等等。