有时候遇到数据存在某一个数组中,类似下图结构,而用到这些数据的接口又需要一个数据集合,比如这样”[14224, 14223]"。
思路是创建一个集合,把这两项数据取出来来,然后放到集合里,脚本如下
eo.http.responseParam=JSON.parse(eo.http.responseParam); let deleteID=[]; for(var i =0;i<eo.http.responseParam.Data.OrderStores[0].GroupInfo[0].List.length;i++){ var item=eo.http.responseParam.Data.OrderStores[0].GroupInfo[0].List[i]; deleteID.push(item.Id); } eo.env.envParam["deleteID"]=JSON.stringify(deleteID);
注意数据结构,特别是“[0]",不能省
创建一个空集deleteID
判断List长度,通过长度值执行循环数
每一次循环取一次List里的值,然后通过push方式取出Id
转化格式
标签:eo,http,eolinker,List,数组,数据 From: https://www.cnblogs.com/becks/p/16666282.html