ホームページ > 記事 > ウェブフロントエンド > jQuery が ajax を呼び出す一般的なメソッドのまとめ request_jquery
この記事の例は、jQuery が ajax リクエストを呼び出す一般的なメソッドをまとめたものです。皆さんの参考に共有してください。詳細は以下の通りです。
サンプルコード 1
$.ajax('/ROUTE', { type: 'GET' data: {param1: 'Hello', param2: 'World'}, dataType: 'json', contentType: 'application/json', timeout: 3000, success: function(response) { // console.log(response.something); }, error: function(request, errorType, errorMessage) { // console.log("[" + errorType + "] " + errorMessage); }, beforeSend: function() { // do something like .addClass('is-fetching') }, complete: function() { // do something like removeClass('is-fetching') } });
サンプルコード 2
$.get('/ROUTE', function(response) { // success (response: HTML) }); $.getJSON('/ROUTE', function(response) { // success (response: JSON) });
サンプルコード 3
$('form').on('submit', function(event) { event.preventDefault(); var formData = $(this).serialize(); $.ajax($(this).attr('action'), { type: $(this).attr('method'), data: formData, dataType: 'json', contentType: 'application/json', success: function(response) {}, error: function(request, errorType, errorMessage) {}, beforeSend: function() {}, complete: function() {}, timeout: 3000 }); });
この記事が皆さんの jQuery プログラミングに役立つことを願っています。