データベースからデータを取得するための関数があるとしましょう。
function getResults() {
if (httpReq.readyState == 4 || httpReq.readyState == 0) {
httpReq.open("GET",'../search.php?blablabla',true);
httpReq.onreadystatechange = function() {
if (httpReq.readyState == 4) {
// Some code here
}
};
httpReq.send(null);
}
updateResults();
// This function is running before the code above
// ...so I actually get no results
}
updateResults()
結果がすでにデータベースから取得されているときに関数を実行するにはどうすればよいですか?