Handsontable仅保存250行

时间:2013-10-22 16:06:31

标签: php jquery handsontable

我在申请中使用了handontable。当我尝试使用AJAX和PHP保存数据时,我只能获得250行数据。是否有任何特定的配置,我需要更改以便能够保存所有数据?我最近改变了我的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');
  } 

提前致谢

1 个答案:

答案 0 :(得分:0)

我终于开始工作了!我正在使用“下一步”按钮保存动手数据并导航到下一页。现在,我分别使用了“保存”和“下一步”按钮。这解决了这个问题。