使用lodash或underscorejs查找字段的数组计数

时间:2015-06-19 04:37:24

标签: javascript arrays underscore.js

我有一个要求获取数组中每个帐户类型的计数。 我已经尝试了循环数组的常规方法,并为每个数组增加一个计数器 帐户类型。你可以帮我在 lodash或下划线js 中做同样的事情。

非常感谢您的帮助。谢谢。

input_array = [
    {
        account_id: '4304bf0381140b8fcccbdddea3571a53facebook',
        account_type: 'facebook'
    },
    {
        account_id: '4304bf0381140b8fcccbdddea332434facebook',
        account_type: 'facebook'
    },
    {
        account_id: '5824fb40c4a97e21ef9715ea69c1cfb9twitter',
        account_type: 'twitter'
    },
    {
        account_id: '5824fb40c4a97e21ef9715ea432423twitter',
        account_type: 'twitter'
    },
    {
        account_id: '2c13790be20a06a35da629c71e548afexing',
        account_type: 'xing'
    },
    {
        account_id: 'd1376b07b144130c4f041e223dfb1197weibo',
        account_type: 'weibo'
    },
    {
        account_id: 'd1376b07b144130c4f041e223df4343weibo',
        account_type: 'weibo'
    }
]
output_array = [
    {
        type: "facebook",
        count: 2
    },
    {
        type: "twitter",
        count: 2
    },
    {
        type: "xing",
        count: 1
    },
    {
        type: "weibo",
        count: 2
    }
]

尝试

input_array.forEach(function(data){
    if(data.account_type=='facebook'){
        count++;//forfacebook
    }
});

2 个答案:

答案 0 :(得分:2)

您可以使用countBy ...

_.countBy(input_array, function(obj) {
    return obj.account_type;
});

答案 1 :(得分:0)

您可以使用filter()

var arrLen = _.filter(input_array, function(obj){
    console.log(obj)
    return obj.account_type === "facebook"
  }).length;