Lodash - 对象(DESC和ASC)排序对象 [英] Lodash - sort objects in object ( desc and asc)

查看:2994
本文介绍了Lodash - 对象(DESC和ASC)排序对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用Lodash排序对象ASC的对象和desc?

例如我想通过R或D来排序。

这是我的对象怎么是这样的:

在这里输入的形象描述


解决方案

纯JS也很简单,你可以做这样的事情;

\r
\r

VAR OBJ = {A:16,B:2,C:8,D :4,E:1},\r
    okeys = Object.keys(OBJ)\r
   排序= {};\r
okeys.sort((P,C)=>的obj [P]< = OBJ [C])的forEach((P,I)=>分类[okeys [I] = OBJ [P]);\r
的document.write('< pre>'+ JSON.stringify(排序,0,2)+'< / pre>');

\r

\r
\r

我根据自己的数值排序对象属性。它们的值可能是对象,你可以根据这些对象的属性值,以及排序。但我不能什么可能是背后做的这一切明智的原因发表评论。

How to sort object of objects asc and desc using Lodash?

For example i want to sort it by 'r' or 'd'.

This is how my object looks like:

解决方案

Pure JS is also very simple and you may do something like this;

var   obj = {a:16, b:2, c:8, d:4, e:1},
    okeys = Object.keys(obj),
   sorted = {};
okeys.sort((p,c) => obj[p] <= obj[c]).forEach((p,i) => sorted[okeys[i]] = obj[p]);
document.write('<pre> ' + JSON.stringify(sorted, 0, 2) + '</pre>');

I am sorting object properties according to their numerical values. Their values could be objects and you could sort according to these objects property values as well. But i can not comment on what could be a sensible reason behind doing all this.

这篇关于Lodash - 对象(DESC和ASC)排序对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆