Get index of a key in json

前端 未结 6 546
北恋
北恋 2021-01-31 03:48

I have a json like so:

json = { \"key1\" : \"watevr1\", \"key2\" : \"watevr2\", \"key3\" : \"watevr3\" }

Now, I want to know the index of a key

6条回答
  •  粉色の甜心
    2021-01-31 04:50

    In principle, it is wrong to look for an index of a key. Keys of a hash map are unordered, you should never expect specific order.

提交回复
热议问题