如何在 Vue 中对包含 2 个字段的数组进行排序?

How to sort array with 2 fields in Vue?

所以我有这个 table:

我使用这个 vue2 filter library 并且我只能使用它按单个字段排序。

我想做的是使用 scoretime_consumed 字段按降序对数组进行排序。分数越高,time_consumed越短,排名越高。

在上面的例子中,顺序应该是这样的;

1. 12 | 10141
2. 5 | 15233
3. 5 | 16233
4. 3 | 11495

我使用了库中的 orderBy 过滤器,但我只能使用

按分数排序
v-for="u in orderBy(users, 'score', -1)"

有更简单的方法吗?任何帮助将不胜感激。

使用计算值对您的分数进行排序。

console.clear()

const scores = [
  {
    score: 3,
    time_consumed: 11495
  },
  {
    score: 5,
    time_consumed: 16233
  },
  {
    score: 5,
    time_consumed: 15233
  },
  {
    score: 12,
    time_consumed: 10141
  },
]

new Vue({
  el:"#app",
  data:{
    scores
  },
  computed:{
    sortedScores(){
      const sorter = (a,b) => b.score - a.score || a.time_consumed - b.time_consumed
    
      return this.scores.sort(sorter)
    }
  }
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.js"></script>
<div id="app">
  <table>
    <tr v-for="score in sortedScores">
      <td>{{score.score}}</td>
      <td>{{score.time_consumed}}</td>
    </tr>
  </table>
</div>

排序器对两个值都起作用,因为如果分数相等,它将最终使用 time_consumed。