json字串 轉換為陣列

cyccgirl發表於2018-10-18
  • 使用for in 迴圈
  • qcshowAnnotation作為json 物件
    item:作為需要的物件存入陣列中,可以使用同一的key 或者value 用於渲染。
    for(let key in qcshowAnnotation){ 
     let item = {};
      item.key = qcshowAnnotation[key];
      item.val = res.content.rows[0][key];
        arr.push(item);            
    }
    或者使用需要指定的key 或者value
    for(let key in qcshowAnnotation){ 
     let item = {};
      item[key] = qcshowAnnotation[key];
      arr.push(item);            
    }
    複製程式碼


相關文章