dongyuan1902 2016-10-18 20:00 采纳率: 0%
浏览 107
已采纳

如何让PHP脚本删除JSON文件中的对象?

So I have an HTML file that is dynamically populated with information from a JSON file, with an ajax _POST request.

All I'm trying to do, is grab the json (just one simple array of objects), strip out the appropriate one via it's index number passed by the ajax, and then recode the JSON back into the same file. No errors, but nothing at all is happening.

Thanks!

Here is my ajax:

$(document).ajaxComplete(function(event, xhr, settings) {
        var json = "data/comments.json";
        $('.delete').click(function(index) {
            var deleteIndex = $(this).parent().attr('id');
            var deleteIndex = parseInt(deleteIndex);
            $.ajax({
                type: 'POST',
                url: 'data/save.php', // the url where we want to POST
                data: deleteIndex,
                success: function(){ 
                                        location.reload();
                                    },
                error: function(){    
                                        alert('Fail!');
                                    }
                });
        });
    });

and here is my PHP:

<?php
$data => $_POST['deleteIndex'];
$file = file_get_contents('comments.json');
$json[] = json_decode($file, true); //return an array
foreach($json as $key => $value) {
   if($value == $data) {
    unset($json[$data]);
    file_put_contents('comments.json', json_encode($json, JSON_PRETTY_PRINT));
   }
}
?>
  • 写回答

1条回答 默认 最新

  • dqxmf02844 2016-10-18 20:28
    关注

    You didn't set the name of the value you send to your server. The data key in the request should be a {key:val} object (or a url-formatted string).

        $(document).ajaxComplete(function(event, xhr, settings) {
        var json = "data/comments.json";
        $('.delete').click(function(index) {
            var deleteIndex = $(this).parent().attr('id');
            var deleteIndex = parseInt(deleteIndex);
            $.ajax({
                type: 'POST',
                url: 'data/save.php', // the url where we want to POST
                data: {'deleteIndex': deleteIndex},
                success: function(){ 
                    location.reload();
                },
                error: function(){    
                    alert('Fail!');
                }
            });
        });
    });
    

    In your PHP code I think this will be much better:

    $data = $_POST['deleteIndex'];
    $file = file_get_contents('comments.json');
    $json = json_decode($file, true); //return an array
    
    unset($json[$data]); // I guess you want to delete the value by key
    file_put_contents('comments.json', json_encode($json));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 Python时间序列如何拟合疏系数模型
  • ¥15 求学软件的前人们指明方向🥺
  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接
  • ¥15 MCNP里如何定义多个源?
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 STM32驱动继电器