JSON 数组可以解析吗? (流解析器)
我有一个 YQL 查询,它从页面中提取数据并将其作为 JSON 返回到我的脚本。 JSON 很大,因此,这是我的问题:
JSON 数组可以解析吗?这样我就可以迭代整个 JSON 结构?
I have a YQL query that extracts data from a page and returns it to my script as JSON. The JSON is huge, and as such, here's my question:
Is JSON array parsable? So that I can iterate over the entire JSON structure?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个定义的 JSON 都是可解析的 - 它是 JAVASCRIPT。问题是需要多少代码,这可能取决于特定的 JSON 数组(您可以少用多少代码)。
如果 JSON 原则上不可解析,那么它就完全毫无价值,你知道。
JSON per definition is parsable - it is JAVASCRIPT. The question is moe how much code that neeeds, which may depend on the specific JSON array (how little can you get away with).
If JSON would not be parsable in principle, it would be totally worthless, you know.