Sharepoint 搜索 API 数组转换为标准格式

Sharepoint search API array transform to standard format

我想从这样的对象的搜索共享点剩余 API 转换数组:

Object
Key:"Path"
Value:"https://host.com/file.pdf"
ValueType:"Edm.String"

标准格式如:

Object
Path: "https://host.com/file.pdf"

最好的方法是什么?我在 lodash 文档中寻找解决方案,但一无所获。 谢谢

请看一下

var reformattedArray = function(obj){
    var rObj = {}; 
    for(var i=0;props > i;i++){
      rObj[obj[i].Key] = obj[i].Value;
    }
    return rObj;
};
console.log(reformattedArray(<array to be transformed>));

现在我的数组已转换为所需格式。