背景
前段时间发现了ramda这个函数式的JavaScript的库。一直没机会用。今天遇到个需求,刚好可以使用上。
要求是把后台接口返回的数据格式转化成与echart对接的数据格式,如图:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
{ "2020-07-01": [ { "北京输气管理处": "95" }, { "山西输气管理处": "51" } ], "2020-07-02": [ { "北京输气管理处": "98" }, { "山西输气管理处": "54" } ] } -> { "北京输气管理处": [ "95", "98" ], "山西输气管理处": [ "51", "54" ] }
|
代码
先放上平时的写法:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
<!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>ES6</title>
<style> textarea { 100%; } </style> </head>
<body onload="init()"> <button onclick="run()">run</button><br><br> <textarea cols="100" rows="50"></textarea> <script> function init() { run(); }
function run() { workFlow() };
function print(str) { document.getElementsByTagName("textarea")[0].value = str; };
function stringify(json) { return JSON.stringify(json, null, " "); }
function workFlow(layerUrl, sublayerId, token) { const response = getResponse(); const resultMap = response.result.ResultMap; const result = format(resultMap); print(stringify(result)); }
function getResponse() { return { "responseCode": "200", "result": { "ResultMap": { "2020-07-01": [{ "北京输气管理处": "95" }, { "山西输气管理处": "51" }], "2020-07-02": [{ "北京输气管理处": "98" }, { "山西输气管理处": "54" }], }, } }; }
function format(resultMap) { const time = []; let data = []; for (let key in resultMap) { time.push(key); data.push(resultMap[key]); } |