Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个相当大的 JSON 数据集,我正在使用 DoT.js 解析它以填充模板以进行显示。我看到部分 JSON 中有超过 3400 个空数组,我什至没有使用这些数组来填充模板。这是一段未使用的 JSON。
,"COMMENTS":[]
我在代码中的较早时间点解析它,以将整个 JSON 数据集中的键转换为小写。
,"comments":[]
像这样的空数组会对性能产生负面影响吗?
是的,它对性能有影响。首先,数据传输会花费更长的时间,而且 JSON 解析也会更慢。
http://jsperf.com/json-empty-arrays-perf