在 URL 哈希/片段中存储 JSON 的最佳实践
我正在构建一个单页 AJAX 应用程序,并且希望在某些情况下在 URL 哈希 (#) 之后将状态存储在 JSON 中。我已经看到其他几个网站这样做了,但我希望在我努力实现这一点时获得一些最佳实践、技巧或陷阱。
I'm building a single-page AJAX application, and would like to under certain circumstances store state in JSON after the URL hash (#). I've seen a couple other sites do this, but I'm hoping to get some best practices, tips, or gotchas as I work to implement this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我实际上建议不要将数据封装到 json 中,然后将其放入哈希中。
原因是 JSON 本身需要大量标记,并且实际上会打开一些安全漏洞,因为您稍后必须评估直接来自用户的代码。
作为更好的选择,我建议使用 x-www-form-urlencoded 作为封装。例如,如果这是您的状态对象:
那么您将创建一个像这样的哈希片段:
然后您将通过以下方式解析它:
I would actually advise against encapsulating data into json and then putting it into the hash.
The reason is that JSON itself needs a lot of markup and will actually open some security holes as you'll have to later eval code that comes directly from the user.
As a better alternative, I would advise using x-www-form-urlencoded as encapsulation. For example if this is your state object:
Then you would create a hash fragment like this:
Then you will parse this back by:
回来回答我自己的问题——我可以证明 JSON 字符串的 URL 编码(即使只是部分)在我们的生产环境中运行得非常好。
前任。源 JSON:
例如。在 URL 中编码:
对于像上面这样的少量 JSON,我们在任何浏览器上都没有遇到问题(甚至早到 IE7)。我们尚未测试更大的 JSON 字符串。
Coming back to answer my own question-- I can testify that URL encoding (even only partially) the JSON string has been working perfectly fine in our production environment.
Ex. source JSON:
Ex. encoded in URL:
For small amounts of JSON such as above we've had no problems on any browsers (as far back as IE7 even). Larger JSON strings we have not tested.