javascript 计算总事件数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 计算总事件数相关的知识,希望对你有一定的参考价值。

//compute total event count;
const counts = _.reduce(events, (c, e) => {
  const { event } = e;

  //Remove invalid characters from Name
  const eventName = event.toLowerCase().replace(/\.\$/, '');

  //Fetch or initialize the counter increment
  const operation = c[eventName] || { value: 1, operation: 'inc' };

  //Increment Counter for this event name
  operation.value++;
  c[eventName] = operation;
  return c;
}, {});

/*
  counts == {
    "viewed page": { operation: 'inc', value: 2},
    "email open": { operation: 'inc', value: 2},
    ...
  }
*/

//Write in Hull Profile, in `event_counts` group;
hull.traits(counts, { source: 'event_counts' });

以上是关于javascript 计算总事件数的主要内容,如果未能解决你的问题,请参考以下文章

分页总数计算,根据总记录数获取分页总数_目标科技

在 groupBy 选择后计算总记录数

MySQL - PHP:计算一天中多个事件之间的总小时数

[Javascript]_[初级]_[获取日期的时间间隔-格式化日期时间]

[Javascript]_[初级]_[获取日期的时间间隔-格式化日期时间]

[Javascript]_[初级]_[获取日期的时间间隔-格式化日期时间]