我正在使用phonegap + sqlite。在sqlite中插入後window.location不能正常工作
我想插入一些東西。
這是我能夠插入數據的代碼 -
function insertDB() {
var sqlI = "INSERT INTO post_data(post_text,pdate) VALUES("Hello, world","23-05-2012");
mydb.transaction(
function(transaction) {
transaction.executeSql(sqlI, [], nullDataHandler, errorHandler);
});
console.log("inserted");
window.location="dashboard.html";
}
當我刪除行window.location="dashboard.html"
或當我設置1000毫秒的延遲,然後執行window.location="dashboard.html"
。但上面的代碼不起作用。爲什麼?
插入或重定向不起作用? – Sebas
重定向工作。插入不。 –