我尝试将JSON
数据插入 PhoneGap 中的SqLit
数据库。我创建了一个包含两列的表,如下所示:
function setup(tx) {
tx.executeSql('DROP TABLE IF EXISTS HEADER_DATA');
tx.executeSql("create table if not exists bookinformation(inserkey TEXT, key TEXT)");
}
此代码成功运行并创建表。然后,我将JSON数据插入bookinformation
表,如下所示:
function dbReady() {
db.transaction(function(tx) {
alert("5");
$.getJSON('http://echo.jsontest.com/key/value/one/two',function(data){
$.each(data, function(i, dat){
tx.executeSql('INSERT OR REPLACE INTO bookinformation (inserkey, key) VALUES("'+data.one+'", "'+data.key+'")');
alert("completed");
});
});
}, errorHandler, function() { alert('added row'); });
}
但是,insert语句失败。我收到这个错误:
Uncaught InvalidStateError:Failed to execute 'executeSql' on 'SQLTransaction':SQL execution is disallowed
导致此错误的原因是什么?
答案 0 :(得分:1)
旧问题,但这可能有助于其他人。
该错误通常是由于事务tx
过时造成的。
这是因为ajax调用,当你的ajax回调被命中时,tx
对象不再有效。如果您使用setTimeout
或任何耗时的非Websql操作,也会发生同样的情况。
为避免这种情况,请在回调中创建内部交易。
E.g
function dbReady() {
$.getJSON('http://echo.jsontest.com/key/value/one/two',function(data) {
db.transaction(function(tx) {
alert("5");
$.each(data, function(i, dat) {
tx.executeSql('INSERT OR REPLACE INTO bookinformation (inserkey, key) VALUES("'+data.one+'", "'+data.key+'")');
});
alert("completed");
}, errorHandler, function() { alert('added row'); });
});
}