最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - VueJS - Filter elements on list base on search value - Stack Overflow

programmeradmin2浏览0评论

In my page, I have a list of elements built from a local variable stored in my ponent. I added an input text used for search to be able to filter and display only elements for which the name contains the string which is searched by the user.

I never see any refresh on my list with the following code. Where is my mistake ?

TEMPLATE

<input v-model="searchTextValue" v-on:keyup="onSearch" type="text" />

<div v-for="car in localCars" :key="car.id">
    <span>{{ car.name }}</span>
</div>

JS

export default {
    data() {
        return {
            localCars: [{name: "audi"}, {name:"fiat"}],
            searchTextValue : ""
        };
    },
    methods: {
        onSearch() {
            this.localCars.filter(function (car) {
                return car.name.indexOf(this.searchTextValue) !== -1;
            });
        },
    }
}

In my page, I have a list of elements built from a local variable stored in my ponent. I added an input text used for search to be able to filter and display only elements for which the name contains the string which is searched by the user.

I never see any refresh on my list with the following code. Where is my mistake ?

TEMPLATE

<input v-model="searchTextValue" v-on:keyup="onSearch" type="text" />

<div v-for="car in localCars" :key="car.id">
    <span>{{ car.name }}</span>
</div>

JS

export default {
    data() {
        return {
            localCars: [{name: "audi"}, {name:"fiat"}],
            searchTextValue : ""
        };
    },
    methods: {
        onSearch() {
            this.localCars.filter(function (car) {
                return car.name.indexOf(this.searchTextValue) !== -1;
            });
        },
    }
}
Share Improve this question asked Jun 6, 2019 at 13:41 wawanopouloswawanopoulos 9,80435 gold badges117 silver badges174 bronze badges 3
  • Do you by refresh mean that the page is not reacting? Because it's not going to refresh. That's the point of vue I think. – Jabberwocky Commented Jun 6, 2019 at 13:43
  • 5 check this jsfiddle example jsfiddle/dkmmhf5y/1 – Thamer Commented Jun 6, 2019 at 13:49
  • 1 @Thamerbelfkih You should post it as a answer – Stephen S Commented Jun 6, 2019 at 13:51
Add a ment  | 

1 Answer 1

Reset to default 9

Your code should look like this: -

Demo Here

<template>
  <div>
    <input v-model="searchTerm" type="text">
    <div></div>
    <div v-for="car in filterByTerm" :key="car.id">
      <span>{{ car.name }}</span>
    </div>
  </div>
</template>


<script>
export default {
  name: "filter-demo",
  data() {
    return {
      localCars: [{ name: "audi" }, { name: "fiat" }],
      searchTerm: ""
    };
  },
  puted: {
    filterByTerm() {
      return this.localCars.filter(car => {
        return car.name.toLowerCase().includes(this.searchTerm);
      });
    }
  },
  methods: {}
};
</script>
发布评论

评论列表(0)

  1. 暂无评论