我在网络应用中有下一个javascript代码(通过Cordova的iOS webview):
this.requestRemoving = function(pQueryStr, pCallBack){
alert("hello");
this.db.transaction(function(tx){
tx.executeSql(pQueryStr, function (tx, res){
pCallBack();
});
}, errorCB, null);
};
此代码有效。但如果我发表评论alert("hello");
,这不起作用。我不知道原因。无论如何,回调总是执行。
注意:查询SQLite字符串是:DELETE FROM Budget WHERE id="blablabla" AND size=205
CREATE TABLE `Budget` (
`id` TEXT,
`size` INTEGER,
`qty` INTEGER DEFAULT ''0'',
PRIMARY KEY(id,size)
);
你能帮帮我吗?