数组中的ajax响应5000表行未在引导表

时间:2018-03-20 05:21:14

标签: javascript jquery ajax post

我正在使用以下函数来获取响应中的ajax数据。工作正常,响应4000项,因为项目超出了表jquery错误累积没有数据加载 无法加载资源:服务器响应状态为405(不允许) 我的ajax电话是

$.ajax({
                beforeSend: function () {
                    AppLaunchAnimationStart();
                },
                complete: function () {
                    AppLaunchAnimationEnd();
                },
                url: url + "/GetDuplicates",
                method: "POST",
                data: {id:folderID, array1:checkedOptions, uncheckNodes:unCheckFolderID},
                dataType: "json",
                timeout: 0,
                success: function (data)
                {

1 个答案:

答案 0 :(得分:0)

我不确定。但我认为您可能需要增加php.ini文件中的post_max_size。

#set max post size
php_value post_max_size 20M