いくつかの SQL 呼び出しを統合するために、サーバーに対して 1 つのクエリを作成し、クライアント側で各結果を反復処理しようとしています。注意点は、次の結果を処理する前にユーザー入力を待つ必要があることです。これは可能ですか?
以下のような jquery 呼び出しがあります。
$.post('functions/file_functions.php', {type: 'test', f: 'load'}, function(data) {
if (data.success) {
$.each(data.files, function() {
// Can I wait for user input at this point and then process the next
// file after a users interaction (e.g. a button click)?
});
}
}, "json");