groupBy with Lodash module(groupBy 与 Lodash 模块)
                            本文介绍了groupBy 与 Lodash 模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
                        
                        问题描述
我使用 lodash 模块进行了如下分组:
I have grouped using the lodash module as below:
export class DtoTransactionCategory {
    categoryName: String;
    totalPrice: number;
}
分组方式
import { groupBy} from 'lodash';
  let result = groupBy(transactionCategoryList, (c: DtoTransactionCategory) => {
      return c.categoryName
    });
结果:
所以现在我需要像这样得到上面的数组(即totalPrice是group的sum):
So now I need to get the above array like this (i.e. totalPrice is the sum of the group):
let myNewArry = [{categoryName:"cat1",totalPrice: 9400},
                    {categoryName:"cat2",totalPrice: 600}]
你能告诉我如何实现最后一步吗?我在这里使用 Lodash 模块.
Can you tell me how to achieve last step? I'm using Lodash modules here.
推荐答案
let result = {
cat1: [{totalPrice: 2}, {totalPrice: 3}],
cat2: [{totalPrice: 2}, {totalPrice: 5}]
}
const totals = _.map(result, (val, key) => ({categoryName: key, totalPrice: _.sumBy(val, 'totalPrice')}))
console.log(totals)
<script src="aHR0cHM6Ly9jZG5qcy5jbG91ZGZsYXJlLmNvbS9hamF4L2xpYnMvbG9kYXNoLmpzLzQuMTcuNC9sb2Rhc2gubWluLmpz"></script>
                        这篇关于groupBy 与 Lodash 模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
				 沃梦达教程
				
			本文标题为:groupBy 与 Lodash 模块
				
        
 
            
        
             猜你喜欢
        
	     - addEventListener 在 IE 11 中不起作用 2022-01-01
 - Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
 - Flexslider 箭头未正确显示 2022-01-01
 - 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
 - Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
 - 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
 - 失败的 Canvas 360 jquery 插件 2022-01-01
 - 400或500级别的HTTP响应 2022-01-01
 - Fetch API 如何获取响应体? 2022-01-01
 - CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
 
						
						
						
						
						