私は小さなプロジェクトのためにPhonegapWebStorageをテストしています:
var listsCount = 0;
tx.executeSql("SELECT * FROM list WHERE id = ?", [id], successGetList, errorGetList );
function successGetList(tx, results){
listsCount = results.rows.length; // this will be 2, in my case
}
function errorGetList(err){
console.log("Error processing SQL: "+err.code);
}
console.log(listsCount); // this will show 0, instead of 2
私が抱えている問題は、メソッドlistsCount
内に設定されないことです。successGetList
そこに戻しても。
関数内でその変数を設定する方法についてのアイデアはありsuccessGetList
ますか?
ありがとう