1. ホーム
  2. jquery

AjaxのbeforeSendとcompleteメソッド

2022-02-20 09:26:11
<パス
$.ajax({
    beforeSend: function(){
     // Handle the beforeSend event
    },
    complete: function(){
     // Handle the complete event
    }
    // ......
});

$.ajax リクエストの 1 つに beforeSend メソッドがあり、リクエストをサーバーに送信する前に何らかのアクションを実行します。

の実行後に完全なメソッドが呼び出されます。

使用方法

データの重複を防ぐ

// Submit the form data to the backend for processing
$.ajax({
    type: "post",
    data: studentInfo,
    contentType: "application/json",
    url: "/Home/Submit",
    beforeSend: function () {
        // Disable the button to prevent duplicate submissions
        $("#submit").attr({ disabled: "disabled" });
    },
    success: function (data) {
        if (data == "Success") {
            //clear the input box
            clearBox();
        }
    },
    complete: function () {
        $("#submit").removeAttr("disabled");
    },
    error: function (data) {
        console.info("error: " + data.responseText);
    }
});

トーストの効果をシミュレートする

$.ajax({
    type: "post",
    contentType: "application/json",
    url: "/Home/GetList",
    beforeSend: function () {
        $("loading").show();
    },
    success: function (data) {
        if (data == "Success") {
            // ...
        }
    },
    complete: function () {
        $("loading").hide();
    },
    error: function (data) {
        console.info("error: " + data.responseText);
    }
});