recherche

Maison  >  Questions et réponses  >  le corps du texte

Comment créer une fonctionnalité de tri dans VueJS ?

J'essaie de créer une fonction de tri dans mon code VueJS. Il comporte les champs suivants : Price:从低到高Price:从高到低.

Alors, c'est le mien template :

<div name="divSortBy">
        <span>
          Sort by:
        </span>
        <select v-model="sort" name="selectSortBy">
          <option
            v-for="item in sortedList"
            :key="item.id"
            name="selectOptionsSortBy"
            :value="item"
            @click="sortBy"
            v-text="item.title"
          ></option>
        </select>
      </div>

C'est data() { return {} } :

sortByItems: [
    {
      id: 1,
      title: 'Price: Low to High',
      sort: 1
    },
    {
      id: 2,
      title: 'Price: High to Low',
      sort: 2
    }
  ],
  sort: null
productsList: [],

C'est compulated :

computed: {
sortedList() {
  // FILTER HERE
  if (this.sort) {
    if (this.sort.id === '1') {
      console.log(this.sort.title) // console.log for tests
      this.productsList.sort(function(a, b) {
        return a.price - b.price
      })
    } else if (this.sort.id === '2') {
      console.log(this.sort.title)
    }
  }

  return this.sortByItems
}

Comme vous pouvez le voir, j'essaye de le trier par cette fonction, mais ça ne marche pas :

this.productsList.sort(function(a, b) {
        return a.price - b.price
      }

D'ailleurs, productsList:[]是对象列表,因此,我需要按pricefield le trie puis affiche les produits triés sur la page.

Merci !

P粉438918323P粉438918323282 Il y a quelques jours328

répondre à tous(1)je répondrai

  • P粉738248522

    P粉7382485222024-02-22 10:36:07

    Vous pouvez personnaliser l'algorithme de tri en passant une fonction de comparaison

    Démo

    if (this.sort.id === "1") {
      return [...this.productsList].sort(function (a, b) {
        return a.price - b.price;
      });
    } else if (this.sort.id === "2") {
       return [...this.productsList].sort(function (a, b) {
        return b.price - a.price;
      });
    }

    répondre
    0
  • Annulerrépondre