javascript - lodash SortBy object content - Stack Overflow

I have an array of objects like so:var quantityPricing = [ { quantity: 1, cost: 0.5 }, { quantity: 100,

I have an array of objects like so:

var quantityPricing = [ 
    { quantity: 1, cost: 0.5 }, 
    { quantity: 100, cost: 0.45 }, 
    { quantity: 1000, cost: 0.25 }, 
    { quantity: 500, cost: 0.35 }
];

I am trying to sortBy the content of this array in ascending order based on the quantity, so the result I am expecting should be:

[
    { quantity: 1, cost: 0.5 },
    { quantity: 100, cost: 0.45 },
    { quantity: 500, cost: 0.35 },
    { quantity: 1000, cost: 0.25 }
]

I have therefore tried to use the lodash mand:

_.sortBy(quantityPricing, ['quantity']);

But unfortunately the result which is returned by the function seem to be only sorted by the first digit in the quantity, for example:

{
    "quantity": 1,
    "cost": 0.5
},
{
    "quantity": 100,
    "cost": 0.45
},
{
    "quantity": 1000,
    "cost": 0.25
},
{
    "quantity": 500,
    "cost": 0.35
}

I do not understand why 500 es at the end, unless it is sorting by the first digit only? As 500 should e after 100 once my array is sorted.

Any help would be greatly appreciated.

I have an array of objects like so:

var quantityPricing = [ 
    { quantity: 1, cost: 0.5 }, 
    { quantity: 100, cost: 0.45 }, 
    { quantity: 1000, cost: 0.25 }, 
    { quantity: 500, cost: 0.35 }
];

I am trying to sortBy the content of this array in ascending order based on the quantity, so the result I am expecting should be:

[
    { quantity: 1, cost: 0.5 },
    { quantity: 100, cost: 0.45 },
    { quantity: 500, cost: 0.35 },
    { quantity: 1000, cost: 0.25 }
]

I have therefore tried to use the lodash mand:

_.sortBy(quantityPricing, ['quantity']);

But unfortunately the result which is returned by the function seem to be only sorted by the first digit in the quantity, for example:

{
    "quantity": 1,
    "cost": 0.5
},
{
    "quantity": 100,
    "cost": 0.45
},
{
    "quantity": 1000,
    "cost": 0.25
},
{
    "quantity": 500,
    "cost": 0.35
}

I do not understand why 500 es at the end, unless it is sorting by the first digit only? As 500 should e after 100 once my array is sorted.

Any help would be greatly appreciated.

Share Improve this question edited Dec 3, 2017 at 7:29 Beau Smith 34.4k14 gold badges95 silver badges102 bronze badges asked Nov 24, 2016 at 18:25 steeveroucautesteeveroucaute 692 gold badges3 silver badges9 bronze badges 1
  • what if quantity will same so you expect their cost to be in ascending order ? – Mahi Commented Nov 24, 2016 at 18:32
Add a ment  | 

3 Answers 3

Reset to default 7

Lodash sortBy doesn't modify the original array and it should return a new array. Are you printing the original array?

Test with this code and it works:

var arr = _.sortBy(quantityPricing, 'quantity');
console.log(arr);

Result:

[ { quantity: 1, cost: 0.5 },
  { quantity: 100, cost: 0.45 },
  { quantity: 500, cost: 0.35 },
  { quantity: 1000, cost: 0.25 } ]

Your code should actually work.

https://jsbin./vepipafaha/edit?html,js,console,output

You probably have supplied string instead of number for quantity in your JSON Array.

Your code actually does work (as pointed out by @drinchev).

  1. Go to https://lodash./docs/ (which has lodash loaded as a global variable)
  2. Open your browser's Javascript console.
  3. Paste this code and hit return:

    _.sortBy([
      { quantity: 1, cost: 0.5 }, 
      { quantity: 100, cost: 0.45 }, 
      { quantity: 1000, cost: 0.25 }, 
      { quantity: 500, cost: 0.35 }
    ], ['quantity']);
    

It will look like this:

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743676712a4488688.html

相关推荐

  • javascript - lodash SortBy object content - Stack Overflow

    I have an array of objects like so:var quantityPricing = [ { quantity: 1, cost: 0.5 }, { quantity: 100,

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信