admin管理员组文章数量:1343333
I have the following structure:
var output = [{
"article": "BlahBlah",
"title": "Another blah"
}, {
"article": "BlahBlah",
"title": "Return of the blah"
}, {
"article": "BlahBlah2",
"title": "The blah strikes back"
}, {
"article": "BlahBlah2",
"title": "The blahfather"
}]
From the above using an elegant lodash one-liner, I need to create the following structure.
var newOutput = [{
"article": "BlahBlah",
"titles": ["Another blah", "Return of the blah"]
}, {
"article": "BlahBlah2",
"titles": ["The blah strikes back", "The blahfather"]
}]
Help as always, is greatly appreciated.. A huge plus for an explanation for how a solution would work.
I have the following structure:
var output = [{
"article": "BlahBlah",
"title": "Another blah"
}, {
"article": "BlahBlah",
"title": "Return of the blah"
}, {
"article": "BlahBlah2",
"title": "The blah strikes back"
}, {
"article": "BlahBlah2",
"title": "The blahfather"
}]
From the above using an elegant lodash one-liner, I need to create the following structure.
var newOutput = [{
"article": "BlahBlah",
"titles": ["Another blah", "Return of the blah"]
}, {
"article": "BlahBlah2",
"titles": ["The blah strikes back", "The blahfather"]
}]
Help as always, is greatly appreciated.. A huge plus for an explanation for how a solution would work.
Share Improve this question edited Jul 18, 2016 at 16:25 stackunderflow asked Jul 18, 2016 at 13:57 stackunderflowstackunderflow 1,7146 gold badges25 silver badges40 bronze badges 3-
titles
should be array if there is only one record? – Tushar Commented Jul 18, 2016 at 13:59 -
1
is the property really
'title:'
? – Nina Scholz Commented Jul 18, 2016 at 15:03 - @NinaScholz.. well spotted – stackunderflow Commented Jul 18, 2016 at 16:25
3 Answers
Reset to default 9Use _.groupBy
and then _.map
the resulting object to an array of objects.
var newOutput = _(output)
.groupBy('article')
.map(function(v, k){ return { article: k, titles: _.map(v, 'title') } })
.value();
var output = [{"article":"BlahBlah","title":"Another blah"},{"article":"BlahBlah","title":"Return of the blah"},{"article":"BlahBlah2","title":"The blah strikes back"},{"article":"BlahBlah2","title":"The blahfather"}];
let newOutput = _(output)
.groupBy('article')
.map(function(v, k){ return { article: k, titles: _.map(v, 'title') } })
.value();
console.log(newOutput);
<script src="https://cdn.jsdelivr/lodash/4.13.1/lodash.min.js"></script>
With ES6 arrow-functions,
var newOutput = _(output)
.groupBy('article')
.map((v, k) => ({ article: k, titles: _.map(v, 'title') }))
.value();
A better lodash version could be (using the awesome chaining
approach)
_(a).groupBy('article').map( (x,k) => ({ article: k, titles:_.map(x, 'title')}) ).value();
If you want to group by article (so article would be the key, useful for quick lookup)
_(a).groupBy('article').mapValues(x => _.map(x, 'title')).value();
A proposal in plain Javascript
It uses a IIFE (Immediate Invoked Function Expression) for using private variables and for collecting the return values in an array.
Beside that it uses a hash table for the reference to the right array item.
var output = [{ article: "BlahBlah", title: "Another blah" }, { article: "BlahBlah", title: "Return of the blah" }, { article: "BlahBlah2", title: "The blah strikes back" }, { article: "BlahBlah2", title: "The blahfather" }],
newOutput = function (data) {
var r = [];
data.forEach(function (a) {
if (!this[a.article]) {
this[a.article] = { article: a.article, titles: [] };
r.push(this[a.article]);
}
this[a.article].titles.push(a.title);
}, Object.create(null));
return r;
}(output);
console.log(newOutput);
本文标签: javascriptLodash create collection from duplicate object keysStack Overflow
版权声明:本文标题:javascript - Lodash create collection from duplicate object keys - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743626343a2512350.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论