eval json内存不足错误
我正在使用 JSON.parse 函数加载有关单元格的信息。我正在测试一次调用可以获取多少数据。
eval 函数开始在 JSON 字符串中的 1.3-140 万个字符(65,000-70,000 个单元格)之间抛出“内存不足”的错误。有谁知道这个问题的解决方法 - 也许是一个纯 JSON 解析器,而不是 eval?
谢谢, 内森
I'm using JSON.parse
function to load info about a cellset. I'm testing how much data is possible to fetch in one call.
The eval function starts throwing "out of memory" between 1.3-1.4 million characters (65,000-70,000 cells) in the JSON string. Does anybody know of a workaround for this - perhaps a pure JSON parser, rather than eval?
Thanks,
Nathan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我推荐这个: http://json.org/js.html 它很有效。
I would recommend this one: http://json.org/js.html it's efficient.
您肯定向客户推送了太多信息。
可能的解决方法:
You are definitely pushing way too much information to your client.
Possible workarounds: