通过Ajax快速设置1000条记录的值?

时间:2018-05-07 07:04:48

标签: c# jquery ajax asp.net-mvc performance

我有1000条记录,我想通过Ajax为每个记录设置值。它的工作非常慢,我需要提高性能。我该怎么做才能提高性能?以下是我目前的代码:

这是我的行动:

$(".Record").each(function () {
    var $this = $(this);
    GetData($this.attr("id"), $this);
});

function GetData(value,element) {
    $.ajax({
        url: '@Url.Action("GetData", "Employees")',
        data: { id: value },
        cache: false,
        type: "GET",
        success: function (data) {
            element.text(data);
        }
    });
}

0 个答案:

没有答案