巧用Ajax的beforeSend 提高使用者體驗

來源:互聯網
上載者:User
jQuery是經常使用的一個開源js架構,其中的$.ajax請求中有一個beforeSend方法,用於在向伺服器發送請求前執行一些動作。
具體可參考jQuery官方文檔: http://api.jquery.com/Ajax_Events/
$.ajax({    beforeSend: function(){     // Handle the beforeSend event    },    complete: function(){     // Handle the complete event    }    // ......});

  防止重複資料

在實際項目開發中,提交表單時常常由於網路或者其原因,使用者點擊提交按鈕誤認為自己沒有操作成功,進而會重複提交按鈕操作次數,如果頁面前端代碼沒有做一些相應的處理,通常會導致多條同樣的資料插入資料庫,導致髒資料的增加。要避免這種現象,在$.ajax請求中的beforeSend方法中把提交按鈕禁用掉,等到Ajax請求執行完畢,在恢複按鈕的可用狀態。

舉個例子:

// 提交表單資料到幕後處理$.ajax({    type: "post",    data: studentInfo,    contentType: "application/json",    url: "/Home/Submit",    beforeSend: function () {        // 禁用按鈕防止重複提交        $("#submit").attr({ disabled: "disabled" });    },    success: function (data) {        if (data == "Success") {            //清空輸入框            clearBox();        }    },    complete: function () {        $("#submit").removeAttr("disabled");    },    error: function (data) {        console.info("error: " + data.responseText);    }});

  類比Toast效果

ajax請求伺服器載入資料列表時提示loading(“載入中,請稍後...”),

$.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);    }});

轉自:http://www.cnblogs.com/fanyong/p/3883670.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.