在reactJS中动态创建的数组长度

时间:2019-03-20 00:24:04

标签: javascript reactjs jsx react-admin

我有一个来自API的数组:

[
{
    "clicks": {
        "2019-01": [
            {
                "clicks": "194",
                "type": 0,
                "user": 19
            },
            {
                "clicks": "414",
                "type": 0,
                "user": 19
            },
            {
                "clicks": "4",
                "type": 90,
                "user": 20
            },
            {
                "clicks": "3",
                "type": 90,
                "user": 21
            }
        ],
        "2019-02": [
            {
                "clicks": "2",
                "type": 2,
                "user": 17
            },
            {
                "clicks": "1",
                "type": 1,
                "user": 19
            }
        ]
    }
}
]

我想计算每个月的所有点击次数。

我到目前为止已经写了:

const MyMonthlyClickCount = ({ record }) => {
    console.log("bla", record);
    var fLen, i, myMonth;
    fLen = record.id.length;
    myMonth = record.id;
    for (i =0; i < fLen; i++) {
       var ads, all, phone, z, mLen;
       mLen = `record.clicks.${myMonth[i].yearmonth}`.length;
       console.log("mLen:", mLen);
    }
    return (<StatusTextField source="record.clicks.2019-01.name" statusK="valami" />)
}

但是,mLen不能满足我的要求。当前它会计算字符串中的字符。

我希望mLen还给我数组长度。

我该怎么做?

console.log的输出:

bla {clicks: {…}, id: Array(2)}
clicks: 2019-01: (32) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
2019-02: (6) [{…}, {…}, {…}, {…}, {…}, {…}]
__proto__: Object
id: (2) [{…}, {…}]
__proto__: Object

mLen: 21

1 个答案:

答案 0 :(得分:1)

值得添加更多数据,但是您就可以了。

let rawData = [
  {
    "clicks": {
        "2019-01": [
            {
                "clicks": "47",
                "id": 63,
                "type": 0,
                "user": 5
            },
            {
                "clicks": "459",
                "id": 5,
                "type": 0,
                "user": 5
            }
       ],
        "2019-02": [
            {
                "clicks": "0",
                "id": 44,
                "type": 0,
                "user": 12
            }
         ]
      }
   }
];

const MyMonthlyClickCount = (record) => {
  if(Array.isArray(record) === false) record = [record];
  return record.map(year => {
    let arrMonth = [];
    for(mth in year.clicks) {
      let m = {
        month: mth,
        clicks: year.clicks[mth].reduce((a,v) => a+=parseInt(v.clicks),0)
      };
      arrMonth.push(m);
    }
    return arrMonth;
  });
};



console.log(MyMonthlyClickCount(rawData));
console.log(MyMonthlyClickCount(rawData[0]));