Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.5k views
in Technique[技术] by (71.8m points)

json数据转换

[{endDateTime: "19:59"
expectValue: 100
startAtTime: "19:58"},{endDateTime: "19:59"
expectValue: 200
startAtTime: "20:58"}]

json数据如何转换成下面的数据格式

{19:58,19:59: "100", 19:59,20:58: "200"}


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
arr.reduce((result,v)=>{
    result[v.startAtTime+","+v.endDateTime]=v.expectValue;
    return result;
},{})

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...