Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これが私のシナリオです。
では、リクエストを保存して、ログイン後に再度トリガーするにはどうすればよいですか?
おそらくこのようなものですか?
var request = { url : 'somehandler.php', data : parameters, success: function(){ // handler for success }, error : function(){ // handler for error } };
次に、変数 request にリクエスト オプションを保存します。これは後で次のように再利用できます。
$.ajax(request);