VUE-搜索过滤器

Posted buildweb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE-搜索过滤器相关的知识,希望对你有一定的参考价值。

首先引入Vue这个就不解释了

html部分

    <div id="app">
        <input v-model=‘search‘ />
        <ul v-if="searchData.length > 0">
          <li v-for="item in searchData">{{item.name}},价格:¥{{item.price}}</li>
        </ul>
        <div v-else>暂无数据</div>
     </div>
JS部分
var vm = new Vue({
  el: ‘#app‘,
  data: {
    search: ‘‘,
    products: [{
      name: ‘苹果‘,
      price: 25,
      category: "水果"
    }, {
      name: ‘香蕉‘,
      price: 15,
      category: "水果"
    }, {
      name: ‘雪梨‘,
      price: 65,
      category: "水果"
    }, {
      name: ‘宝马‘,
      price: 2500,
      category: "汽车"
    }, {
      name: ‘奔驰‘,
      price: 10025,
      category: "汽车"
    }, {
      name: ‘柑橘‘,
      price: 15,
      category: "水果"
    }, {
      name: ‘奥迪‘,
      price: 25,
      category: "汽车"
    }]
  },
  computed: {
    searchData: function() {
      var search = this.search;

      if (search) {
        return this.products.filter(function(product) {
          return Object.keys(product).some(function(key) {
            return String(product[key]).toLowerCase().indexOf(search) > -1
          })
        })
      }

      return this.products;
    }
  }
})

非常实用把,试一下哦

以上是关于VUE-搜索过滤器的主要内容,如果未能解决你的问题,请参考以下文章

从 axios API 搜索 vue b-table 中的特定数据

实现诸如 FourSquare 或 Ebay 之类的 Android 搜索过滤器

Vue JS按多个数组对象项过滤

为啥我在 vue.js 中的自定义搜索过滤器不起作用?

vscode之快速生成vue模板

使用 EventBus 通过单个文件组件传递 Vue js 搜索过滤器功能