2016-12-26 63 views
0

我試圖將電子表格數據保存到json文件。我使用下面的代碼。當我運行這段代碼時,沒有任何反應,開發人員的Web控制檯顯示'找不到元素'。我使用的是可移植的0.29請幫助我瞭解工作代碼。非常感謝您的幫助。保存數據到一個json文件與handontable

JS代碼

Handsontable.Dom.addEvent(save, 'click', function() { 
    // save all cell's data 
    ajax('save.php', 'POST', {data: hot.getData()}, function (res) { 
    }); 
}); 

save.php

​​
+0

可能的重複來源:http://stackoverflow.com/questions/7895335/append-data-to-a-json-file-with-php – Beginner

+0

Mr. Beginner!你的鏈接與我的問題無關。無論如何感謝您的答案。我想通了。 – Niroshan

回答

0

js代碼

Handsontable.Dom.addEvent(save, 'click', function() { 

    ajax('save.php', 'POST', 'value='+JSON.stringify({data : hot.getData()}), function (res){ 
    }); 
}); 

save.php

<?php 

    $stringData = $_POST["value"]; 

    $myFile = "general.json"; 
    $fh = fopen($myFile, 'w') or die("can't open file"); 

    fwrite($fh, $stringData); 
    fclose($fh) 
?> 

這個效果很好。希望它能幫助別人。

相關問題