我有从G Suite Admin SDK获得的数据,如下所示:

[{orgUnitPath=/Test, kind=admin#directory#orgUnit, blockInheritance=false, name=No Public Sharing, description=, etag="string", orgUnitId=id:00000, parentOrgUnitPath=/, parentOrgUnitId=id:111111}, ...]


我如何将其转换成这样的数组:

[[[orgunitpath, test],[orgunitid,000000]],[[orgunitpath, test],[orgunitid,000000]],[[orgunitpath, test2],[orgunitid,222222]],[[orgunitpath, test],[orgunitid,222222]]]


我最终希望将这些数据导入AppMaker中的SQL数据源。

最佳答案

您可以使用Array#map轻松完成此操作

片段:

var res; //[{orgUnitPath:/Test, orgUnitId:id:00000, parentOrgUnitPath=/, parentOrgUnitId=id:111111}, ...]
var array=res.map(function(obj){
    return [['orgunitpath', obj['orgUnitPath']],['orgunitid',obj['orgUnitId']]]
})

09-25 18:06