javascript-Lodash变换对象和字符串的数组混合

我有一个包含对象和字符串混合的数组.我需要将数组转换为另一个对象数组.

输入数组:

[
  {"text": "Address"},
  {"text": "NewTag"},
  {"text": "Tag"},
  "Address",
  "Name",
  "Profile",
  {"text": "Name"},
]

out数组应如下所示:

[
  {"Tag": "Address", Count: 2},
  {"Tag": "Name", Count: 2},
  {"Tag": "NewTag", Count: 1},
  {"Tag": "Profile", Count: 1},
  {"Tag": "Tag", Count: 1},
]

这是我的代码(看起来很愚蠢):

var tags = [], tansformedTags=[];   
for (var i = 0; i < input.length; i++) {
  if (_.isObject(input[i])) {
    tags.push(input[i]['text']);
  } else {
    tags.push(input[i]);
  }
}
tags = _.countBy(tags, _.identity);
for (var property in tags) {
  if (!tags.hasOwnProperty(property)) {
    continue;
  }
  tansformedTags.push({ "Tag": property, "Count": tags[property] });
}
return _.sortByOrder(tansformedTags, 'Tag');

我想知道是否有更好,更优雅的方法来执行此操作?

解决方法:

通过使用map()countBy()

_(arr)
    .map(function(item) {
        return _.get(item, 'text', item);
    })
    .countBy()
    .map(function(value, key) {
        return { Text: key, Count: value };
    })
    .value();
上一篇:javascript-合并两个对象并删除原始对象中不存在的属性


下一篇:javascript-如何使用lodash在对象数组中合并/连接相同对象属性的值?