1

对于 PHP/HTML 页面,向 JSON 添加数据的最简单方法是什么?我应该使用 PHP、JS 还是 jQuery?

我已经尝试了许多在网上找到的不同方法,但我无法得到任何工作。我已经尝试了所有这些,但我无法完全正确。

 var myObject = new Object();
 JSON.stringify()
 JSON.parse()
 $.extend();
 .push()
 .concat()

我已经加载了这个 JSON 文件

    {"commentobjects": 
        [
                {"thecomment": "abc"},
                {"thecomment": "def"},
                {"thecomment": "ghi"}
            ]
    }

我想以编程方式添加

    var THISNEWCOMMENT = 'jkl;
    {"thecomment": THISNEWCOMMENT}

这样 JSON 变量将是

    {"commentobjects": 
        [
                {"thecomment": "abc"},
                {"thecomment": "def"},
                {"thecomment": "ghi"},
            {"thecomment": "jkl"}
        ]
    }

///////////////// 回答后编辑 ////////////////

这是我用来调用 PHP 函数的 index.php 文件中的 ajax(在其单独的文件中):

    function commentSaveAction ()
    {
        var mytext = $(".mycommentinput").val();
        mytext = mytext.replace("\"","'");

            $.ajax({
                url: 'php/commentwrite.php',
                data: { thePhpData: mytext },
                success: function (response) {
               }
            });
    }

这是我在 deceze 的帮助下使用的完成的 PHP 函数:

    <?php

    function writeFunction () 
    {
        $filename = '../database/comments.txt';

        $arr = json_decode(file_get_contents($filename),true);
        $myData = $_GET['thePhpData'];  

        $arr['commentobjects'][] = array('thecomment' => $myData);
        $json = json_encode($arr);

        $fileWrite=fopen($filename,"w+");
        fwrite($fileWrite,$json);
        fclose($fileWrite);
    }
    writeFunction ();   

    ?>

/////////////////// 使用 JS 而不是 PHP //////////////////

        var myJsonData;

        function getCommentData ()
        {
            $.getJSON('database/comments.txt', function(data) {

                myJsonData = data;

                var count = data.commentobjects.length;
                for (i=0;i<count;i++) {
                    $(".commentbox ul").append("<li>"+data.commentobjects[i].thecomment+"</li>");
                }
            }); 
        }

        function commentSaveAction ()
        {
            var mytext = $(".mycommentinput").val();
            mytext = mytext.replace("\"","'");

            myJsonData.commentobjects.push({"thecomment": mytext});

            var count = myJsonData.commentobjects.length;
            $(".commentbox ul").append("<li>"+myJsonData.commentobjects[count-1].thecomment+"</li>");
        }
4

4 回答 4

4

无论您使用哪种语言,都必须将 JSON 字符串解析为对象/数组,对其进行修改,然后将其编码回 JSON 字符串。不要尝试对 JSON 字符串进行任何直接的字符串操作。PHP 示例:

$arr = json_decode($json, true);
$arr['commentobjects'][] = array('thecomment' => 'jkl');
$json = json_encode($arr);

是否在 Javascript 或 PHP 或其他地方执行此操作取决于您何时/为什么/在何处需要执行此操作;如果不了解用例的更多信息,这是不可能说的。

于 2013-07-11T07:28:57.963 回答
1

尝试使用json_encodejson_decodePHP 函数。

//work on arrays in php
$arr = array('sth1', 'sth2');

//here you have json
$jsonStr = json_encode($arr);

//array again
$arrAgain = json_decode($jsonStr);

$arrAgain[] = 'sth3';
//json again
$jsonAgain = json_encode($arrAgain)
于 2013-07-11T07:30:18.590 回答
1

只需在 javascript 中执行此操作:

var x = {"commentobjects": 
    [
            {"thecomment": "abc"},
            {"thecomment": "def"},
            {"thecomment": "ghi"}
    ]
};

x.commentobjects.push({"thecomment": "jkl"});
于 2013-07-11T08:04:41.980 回答
0
var THISNEWCOMMENT = 'jkl',
    myObj = JSON.parse(rawJson),
    newComment = {"thecomment": THISNEWCOMMENT};
myObj.commentobjects.push(newComment);
var serialized = JSON.stringify(myObj);
//send the updated JSON to your controller

解析对象,访问其中的commentobject列表,将新注释推送到列表中,然后再次序列化更新的对象。

于 2013-07-11T07:29:15.237 回答