通过AJAX或PHP将JavaScript数据写入JSON文件

时间:2017-06-18 18:19:27

标签: javascript php json ajax splice

我有以下代码显示有关表中人员的信息,当单击标记为“learn”的按钮时,该信息将存储在键/值类型数组中,然后将其拼接到指定的JSON对象中。

所有这一切都很好,但我想改变保存JSON对象本身的文件,这意味着我需要处理服务器端代码。我怎样才能将这个插入到我的JSON对象中并实际更改它存储的文本文件(如果我打开它,那么新信息会在那里)?

我的代码如下 - >

的index.html

<!DOCTYPE html>
<html>
<head>
    <script type="text/javascript" src="list.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
    <title></title>
</head>
<body>
    <table>
        <tr>
            <td>
                <table>
                    <tr><td>Name</td><td class="name">Jenkins</td></tr>
                    <tr><td>Job</td><td class="job">Accountant</td></tr>
                    <tr><td>Size</td><td class="size">Small</td></tr>
                </table>
            </td>
            <td class="description">average joe.</td>
            <td>
                <button class="learn">Learn</button>
            </td>
        </tr>
    </table>


    <script type="text/javascript">
        $(".learn").click(function(){

        // look at jsonData in list.js and append this element to the items list in the 
        // first element, at the first index without removing any content
        jsonData[0].items.splice(0, 0, {
            name: $(this).closest("table").find(".name").text(),
            job: $(this).closest("table").find(".job").text(),
            size: $(this).closest("table").find(".size").text(),
            description: $(this).closest("td").siblings(".description").text()
        });

        // to show that it is properly appending the new information to the existing JSON object
        console.log(jsonData);
    });
    </script>

</body>
</html>

list.js - &gt;

var jsonData = [
  {
    name: "Friends",
    items: [
      {
        name: "Steve",
        job: "pro bowler",
        size: "tall",
        description: "Steve's my man!"
      },
      {
        name: "Jessica",
        job: "HR",
        size: "average",
        description: "a dear friend"
      }
    ]
  },
  {
    name: "Co-Workers",
    items: [
      {
        name: "Martin",
        job: "my boss",
        size: "tall",
        description: "I don't like him"
      },
      {
        name: "Susan",
        job: "Intern",
        size: "average",
        description: "It's not like I have a crush on her or anything..."
      }
    ]
  }
]

再次,在控制台中可以看到jsonData添加了“jenkins”的信息;但是,文本文件本身保持不变,我希望它能反映出这一点。谢谢。

1 个答案:

答案 0 :(得分:0)

无法使用JavaScript更改本地文件系统上的文件(至少在所有浏览器中都不能)。 我会建议像:

JavaScript的:

*sct[__NR_ioctl]

PHP(save.php):

$(".learn").click(function(){
    $.ajax({
        url: "save.php?action=save",
        method: "POST",
        data: { elem: {
            name: $(this).closest("table").find(".name").text(),
            job: $(this).closest("table").find(".job").text(),
            size: $(this).closest("table").find(".size").text(),
            description: $(this).closest("td").siblings(".description").text()
        }},
        success: function (data){
            console.log("Saved!");
        }
    });
}

这只是一个很小的例子。此外,您应该注意转义,检查字段,错误处理,同步更新(多个客户端)等 - 但它显示了一种可能的方法来执行此操作。