[轉]$.post() 和 $.get() 如何同步請求

原文地址:https://blog.csdn.net/sunnyzyq/article/details/78730894ajax

因爲$.post() 和 $.get() 默認是 異步請求,若是須要同步請求,則能夠進行以下使用:

在$.post()前把ajax設置爲同步:$.ajaxSettings.async = false;

在$.post()後把ajax改回爲異步:$.ajaxSettings.async = true;

如:

    $.ajaxSettings.async = false;
    $.post("/finance/getLastTimeCard", data, function(result) {
        // 請求處理
    },"json");
    $.ajaxSettings.async = true;

json

相關文章
相關標籤/搜索