用php通过ajax保存json数据

时间:2012-08-16 17:01:28

标签: php jquery json

我有一个json文件并将数据显示为列表 使用输入字段可以编辑所有内容,如果单击保存,我想用新数据覆盖json文件

有以下标记

   <ul id="sortable">
      <li>
         <input class="jahr" type="number" value="2010" placeholder="Jahr">
         <input class="titel" type="text" value="testtitel" placeholder="Titel">
         <input class="delete" type="button" value="löschen">
     </li>
      <li>
         <input class="jahr" type="number" value="2012" placeholder="Jahr">
         <input class="titel" type="text" value="testtitel2" placeholder="Titel">
         <input class="delete" type="button" value="löschen">
     </li>
   </ul>

现在我想将数据保存在json文件中,所以我有以下jquery代码

var erfolge = [];

$('#sortable').children().each( function(){
    erfolge.push({titel : $(this).find('.titel').val(), jahr: $(this).find('.jahr').val()});                
});

$.ajax({
   type: "POST",
    url: "erfolge_speichern.php",
    dataType: 'json',
    data: { json: erfolge }
});

并且php文件如下所示:

<?
$json = $_POST['json'];

$file = fopen('../json/erfolge.json','w+');
fwrite($file, json_decode($json));
fclose($file);
?>

当我用firebug查看帖子数据时,它看起来像这样

json[0][jahr]   2010
json[0][titel]  testtitel
json[2][jahr]   2012
json[2][titel]  testtiel2

然后json文件为空

提前致谢!

0 个答案:

没有答案