2020年10月8日

摘要: // 方法1: let obj = { name:'zs',age:12,addr:'gz' } let arr = [] for(var x in obj) { let o = {} o[x] = obj[x] arr.push(o) } console.log(arr); // 方法2 let  阅读全文

posted @ 2020-10-08 20:08 猫头唔食鱼 阅读(924) 评论(0) 推荐(0) 编辑