How to represent a sparse array in JSON?

后端 未结 2 1647
一个人的身影
一个人的身影 2021-01-13 06:18

I\'ve got a sparse array that I want to represent in JSON. For example:

  -10 => 100
   -1 => 102
    3 => 44
   12 => -87
12345 => 0
<         


        
相关标签:
2条回答
  • 2021-01-13 06:40

    Yes, you can. JSON object members name are strings. Strings can hold any UTF-8 encoded value:

    {
      "-10"   : 100,
      "-1"    : 102,
      "3"     : 44,
      "12"    : -87,
      "12345" : 0
    }
    
    0 讨论(0)
  • 2021-01-13 06:57

    You can represent it as a simple object:

    {
      "-10" : 100,
      "-1" : 102,
      "3" : 44,
      "12" : -87,
      "12345" : 0
    }
    

    Since it will be a simple object, you cannot iterate it the same way as an array, but you can use the for...in statement:

    for (var key in obj) {
      if (obj.hasOwnProperty(key)) {
        var value = obj[key];
      }
    }
    

    And if you want to access an specific element by key, you can use also here the square bracket property accessor:

    obj['-10']; // 100
    

    Note that I use the hasOwnProperty method inside the for...in loop, this is to prevent iterating properties defined on higher levels of the prototype chain, which can cause problems and unexpected behavior... more info here.

    0 讨论(0)
提交回复
热议问题