lodash orderBy on nested property

安稳与你 提交于 2019-11-28 23:04:04

It seems that you are ordering by the property value.

u.orderBy(list, function(e) { return e.age.milliseconds}, ['desc']);

https://codepen.io/a2qube/pen/pKYrgN

A simple example on how you can use the Lodash: orderBy to sort based on inner attributes.

hotels = _.orderBy(hotels, 'account.id', 'desc');

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!