gpt4 book ai didi

javascript - _.groupBy momentjs 格式返回键未定义

转载 作者:行者123 更新时间:2023-12-03 02:23:52 25 4
gpt4 key购买 nike

enter image description here

我正在尝试按日期对这些记录进行分组,例如:2018/02/28

我的代码正在使用 lodash 的 _.groupBy 函数。

let groupedData = _.groupBy(data, access_log => {
moment
.utc(access_log.last_access_at)
.local()
.format("YYYY-MM-DD");
});

这会很好地返回分组数据,但该组的键是未定义。给定格式匹配器,它不应该将日期返回为 "2018/02/28 吗?

enter image description here

最佳答案

您没有返回任何东西。只需在 moment.utc(access_log.last_access_at) .local() .format("YYYY-MM-DD"); 之前添加一个 return 因为您添加了 { } 在粗箭头函数内,您需要指定 return 关键字,否则删除{}

let groupedData = _.groupBy(data, access_log => { return moment .utc(access_log.last_access_at) .local() .format("YYYY-MM-DD"); });

关于javascript - _.groupBy momentjs 格式返回键未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49039713/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com