如何让 Lodash sortBy() 对数据进行降序排序?

How to make Lodash sortBy() to sort data to descending order?

Lodash 中的 sortBy() 未按降序排序,当我通过 'desc' 调用函数时 const sortedData = _.sortBy(data, ['rawAvgPrice'], ['desc']);。这适用于升序。但不是降序排列。我已经 post 编辑了我编写的排序功能。我阅读了线程“lodash multi-column sortBy descending”,但它并没有帮助我解决问题。因此决定post这个。

    /**
     * @param {String} element - sorting object element name.
     * @param {String} dir - the direction of the sort ASC/DESC.
     * @param {Boolean} flag - Signaling to sort the table and update.
     */
    sortTableNew(element, dir, flag) {
      let direction = dir;
      
      // Change the sorting from ASC to DESC/ DESC to ASC
      if (flag) {
        direction = dir === 'asc' ? 'desc' : 'asc';
      }
      
      // Getting the current open tabs details
      const { activeTab } = this.$props.state.keywordSearch;
      const { data } = this.$props.state.keywordSearch.tabs[activeTab];

      const sortedData = _.sortBy(data, [element], [direction]);
      
      // Updating the cache to dispatch data to the table
      cachedHelper.updateCacheKeyword(cachedHelper.SCREEN_TYPE.keywordSearch, activeTab, sortedData);
      cachedHelper.updateCacheSortType(cachedHelper.SCREEN_TYPE.keywordSearch, activeTab, direction, column);
    },

lodash documentation 我们在搜索 _.sortBy 时发现:“创建一个元素数组,按 运行 集合中每个元素的结果按升序排序每个迭代器。“

从中我们可以看出 _.sortBy 将始终 return 一个按升序排序的数组。

您可以尝试使用 _.orderBy,而不是像这样: _.orderBy(users, 'age', 'desc');

您可以尝试使用Lodash 的orderBy 方法。对我来说就像一个魅力。

var users = [
  { 'user': 'fred',   'age': 48 },
  { 'user': 'barney', 'age': 34 },
  { 'user': 'fred',   'age': 40 },
  { 'user': 'barney', 'age': 36 }
];
 
// Sort by `user` in ascending order and by `age` in descending order.
_.orderBy(users, ['user', 'age'], ['asc', 'desc']);
// => objects for [['barney', 36], ['barney', 34], ['fred', 48],

你可以在这里查看官方文档Lodash orderBy