0

I have json data that is about 1,000,000 character length and about 1.04MB size. I have JavaScript program (with d3.js)that must parse json data by eval() function. Is my jsondata too big for Json?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
user3974637
  • 25
  • 1
  • 8

1 Answers1

0

JSON is similar to other data formats like XML - if you need to transmit more data, you just send more data and process. for more clarification see this thread:Is there a limit on how much JSON can hold?

Community
  • 1
  • 1
Suchit kumar
  • 11,809
  • 3
  • 22
  • 44