Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我到处寻找,但我真的找不到如何将新节点添加到位于本地主机的 JSON 文件中......请分享一些代码。
我所拥有的是:
$.getJSON( 'demo.json', function(data) { });
getJSON只检索数据。如果愿意,您可以在回调函数中为检索到的数据添加一个节点,以便在应用程序的其余部分中使用它。
如果您希望将新节点追加并保存到文件中,则需要将新数据写入服务器上的文件中。这不能从客户端完成。当然,您可以使用AJAX将新数据发送到服务器并将文件保存在那里。