问题描述
我正在根据date过滤任务列表。当我指定自定义日期时,它应该显示任务列表。所有API部分都能完美运行。
groupBy = (array,key) => {
// Return the end result
return array.reduce((result,currentValue) => {
// If an array already present for key,push it to the array. Else create an array and push the object
(result[currentValue[key]] = result[currentValue[key]] || []).push(
currentValue
);
// Return the current iteration `result` value,this will be taken as next iteration `result` value and accumulate
return result;
},{}); // empty object is the initial value for result object
};
我得到的错误是:'
TypeError: array.reduce is not a function
由于我是新来的,所以我不知道。有什么建议吗?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)