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.
我有两个对象作为来自 web 服务调用的响应。该调用是由 cron 作业发出的,因此我必须如何覆盖现有数据并使新数据可用于前端调用以接收。
现在我的 PHP 脚本只是响应响应 - 但这不是正确的方法,对吧?
我如何存储这些数据?
您应该将 json_encode 应用于您的对象并将生成的字符串保存在任何 .txt 文件中,然后您可以通过 ajax 调用访问它,该对象现在将是 json 字符串,您可以使用 JSON.parse(json_string_from_txt_file 轻松在前端重新生成 json 对象)。希望这可以帮助 :)