Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
271 views
in Technique[技术] by (71.8m points)

js 数组json 转化为纯json格式

如题,求个优雅的写法把数组json 转化成纯json格式(ps: 数组json中的age的值,是转化后json中的key

数组json格式

[
  {
   "age": 'test',
   "height": 180,
    children[
    {
     "age": 'test2',
     "height": 181,
      children[
        {
         "age": 'test3',
         "height": 178,
        }
      ] 
    },
    {
     "age": 'test4',
     "height": 170,
    }
   ] 
  },
  {
     age": 'test5',
    "height": 175,
  }
]

纯json格式:

{
  test: {
    test2: {
      test3: ''
    },
    test4: ''
  },
  test5: ''
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...