在html页面之间共享Json

boh*_*han 1 html javascript jquery json

我使用 jQuery AJAX 在登录页面中获取了一串 JSON。我如何在其他页面中使用它。是否有某种方法可以存储 JSON 并在我的网站中的任何位置访问它。附:我没有使用任何其他服务器脚本,它只是一个 html 网站。JSON 字符串约为 5K 字节。

Tim*_*een 5

您可以使用本地存储

// Store
localStorage.setItem("json", JSON.stringify(json));
// Retrieve
JSON.parse(localStorage.getItem("json"));
Run Code Online (Sandbox Code Playgroud)