最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Lodash get items that has the lowest value under unique id - Stack Overflow

programmeradmin1浏览0评论

I have an array of objects that represents a set of tours but there are different prices for the same tour like this:

let tours = [{'id':1, price:200},
             {'id':1, price:300},
             {'id':3, price:150},
             {'id':2, price:110},
             {'id':3, price:120},
             {'id':2, price:100}]

So, I would like to pick the lowest price available by the tour ID and push it into a new array as unique tour with the lowest price. So the result would be:

result = [{'id':1, price:200},
          {'id':3, price:120},
          {'id':2, price:100},]

I tried methods in Lodash like _.minBy()but it returns one from all the array.

I have an array of objects that represents a set of tours but there are different prices for the same tour like this:

let tours = [{'id':1, price:200},
             {'id':1, price:300},
             {'id':3, price:150},
             {'id':2, price:110},
             {'id':3, price:120},
             {'id':2, price:100}]

So, I would like to pick the lowest price available by the tour ID and push it into a new array as unique tour with the lowest price. So the result would be:

result = [{'id':1, price:200},
          {'id':3, price:120},
          {'id':2, price:100},]

I tried methods in Lodash like _.minBy()but it returns one from all the array.

Share Improve this question edited Mar 31, 2018 at 10:03 Aman Ullah 497 bronze badges asked Mar 31, 2018 at 9:03 Ibrahim MohammedIbrahim Mohammed 3125 silver badges17 bronze badges 1
  • Please share your attempt. – gurvinder372 Commented Mar 31, 2018 at 9:16
Add a ment  | 

2 Answers 2

Reset to default 7

Lodash Solution

You can _.groupBy() ids, than _.map() the result, and take the lowest of each group with _.minBy():

const tours = [{"id":1,"price":200, prop: 'prop1' },{"id":1,"price":300, prop: 'prop1'},{"id":3,"price":150},{"id":2,"price":110},{"id":3,"price":120},{"id":2,"price":100}];

const result = _(tours)
  .groupBy('id')
  .map((group) => _.minBy(group, 'price'))
  .value();

console.log(result);
<script src="https://cdnjs.cloudflare./ajax/libs/lodash.js/4.17.5/lodash.min.js"></script>

VanillaJS Solution

Reduce the tours to a Map with the ids as key. On each iteration take the group with lowest price. When done, spread the Map.values() back to an array:

const tours = [{"id":1,"price":200, prop: 'prop1' },{"id":1,"price":300, prop: 'prop1'},{"id":3,"price":150},{"id":2,"price":110},{"id":3,"price":120},{"id":2,"price":100}];
             
const lowest = [...tours.reduce((r, o) => {
  const { id, price } = o;
  const current = r.get(id);
  
  if(!current || price < current.price) r.set(id, { ...o });

  return r;
}, new Map()).values()];

console.log(lowest);

Or you can use simply reduce and keep updating minimum value in the accumulator

tours.reduce( (acc, c) => {
   acc[c.id] = acc[c.id] ? Math.min( c.price, acc[c.id] ) : c.price; //update min value in accumulator
   return acc;  // return  accumulator
} ,{}) //initialize accumulator to {}

Demo

let tours = [{
    'id': 1,
    price: 200
  },
  {
    'id': 1,
    price: 300
  },
  {
    'id': 3,
    price: 150
  },
  {
    'id': 2,
    price: 110
  },
  {
    'id': 3,
    price: 120
  },
  {
    'id': 2,
    price: 100
  }
];

var output = tours.reduce((acc, c) => {
  acc[c.id] = acc[c.id] ? Math.min(c.price, acc[c.id]) : c.price;
  return acc;
}, {});

console.log(output);

发布评论

评论列表(0)

  1. 暂无评论