JSON 和 RSS 提要 - 区别?
JSON 和 RSS 提要之间有什么区别?
除了:
JSON 提要的格式是 JavaScript可以轻松直接使用。
浏览器会消耗大量 JSON 比他们高效得多 可以消耗大量的XML并且 差距正在扩大,因为最新的 浏览器的版本现在是 提供原生、安全的支持 JSON 编码和解码。
What are the differences between JSON and RSS feeds?
Apart from:
A JSON feed is in a format that a
JavaScript can easily use directly.Browsers can consume large amount of
JSON much more efficiently than they
can consume large amount of XML and
the gap is widening because the latest
versions of the browsers are now
providing native, safe support for
encoding and decoding JSON.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 JavaScript,那么您就会知道 DOM 是多么麻烦。我建议使用 JSON,因为它更容易编程。我还取决于您将其发送到哪里,您的客户端是否支持 RSS 或 JSON。
其他事项:
If you are using JavaScript then you know what a hassle the DOM can be. I would suggest using JSON just because it is easier to program for. I also depends on where you are sending it, whether or not your clients support RSS or JSON.
Other things:
JSON 更容易解析。例如,在 PHP 中,它只是
json_decode($json)
。JSON's substantially easier to parse. In PHP, for example, it's just
json_decode($json)
.