我在我的应用程序中使用handsontable。当我尝试使用 AJAX 和 PHP 保存数据时,我只能获得 250 行数据。是否有任何特定的配置,我需要更改才能保存handsontable 中的所有数据?我最近更改了我的css,这有影响吗?请看下面的代码。
$("#divButtons").find(".btnSubmit").click(function () {
$.ajax({
url: "saveData3.php",
data: { "data" : $container.data('handsontable').getData()},
//returns all cells' data
dataType: 'json',
type: 'POST',
success: function(){......})};
我的php
$post_data = $_POST['data'];
if (!empty($post_data)) {
$file = fopen('data_save3.json', 'w+');
fwrite($file, json_encode($post_data));
fclose($file);
//echo json_encode('success');
}
提前致谢