donglu5041 2012-08-16 17:01
浏览 42

用php通过ajax保存json数据

i have a json file and show the data as a list with the input fields everything can be edited and if save is clicked, i want to override the json file with the new data

have the following markup

   <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>

now i want to save the data in a json file, so i have the following jquery code

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 }
});

and the php file looks like this:

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

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

when i look at the post data with firebug it looks like this

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

the json file is then empty

Thanks in advance!

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 在获取boss直聘的聊天的时候只能获取到前40条聊天数据
    • ¥20 关于URL获取的参数,无法执行二选一查询
    • ¥15 液位控制,当液位超过高限时常开触点59闭合,直到液位低于低限时,断开
    • ¥15 marlin编译错误,如何解决?
    • ¥15 有偿四位数,节约算法和扫描算法
    • ¥15 VUE项目怎么运行,系统打不开
    • ¥50 pointpillars等目标检测算法怎么融合注意力机制
    • ¥20 Vs code Mac系统 PHP Debug调试环境配置
    • ¥60 大一项目课,微信小程序
    • ¥15 求视频摘要youtube和ovp数据集