/*
对象转数组
@params
obj对象
*/
objToArr(obj) {
var arr = [];
for (let i in obj) {
let o = {};
o[i] = obj[i];
arr.push(o);
}
return arr;
},
网友评论