vue的filter用法,检索内容

Posted 黎明之光123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue的filter用法,检索内容相关的知识,希望对你有一定的参考价值。

var app5 = new Vue({
el: ‘#app5‘,
data: {
shoppingList: [
"Milk",
"Donuts",
"Cookies",
"Chocolate",
"Peanut Butter",
"Pepto Bismol",
"Pepto Bismol (Chocolate flavor)",
"Pepto Bismol (Cookie flavor)" ],
key: ""
},
computed: {
filterShoppingList: function () { // `this` points to the vm instance
var key = this.key;
var shoppingList = this.shoppingList; //在使用filter时需要注意的是,前面调用的是需要使用filter的数组,而给filter函数传入的是数组中的每个item,也就是说filter里面的函数,是每个item要去做的,并将每个结果返回。
return shoppingList.filter(function (item) {
return item.toLowerCase().indexOf(key.toLowerCase()) != -1 });;
}
}
})

<ul> Filter Key<input type="text" v-model="key"> <li v-for="item in filterShoppingList"> {{ item }} </li> </ul>

  

以上是关于vue的filter用法,检索内容的主要内容,如果未能解决你的问题,请参考以下文章

filter方法

vue、ts全局filters的用法(多个过滤)

vue之filter用法

vue 里filter的基本用法

教你VUE中的filters过滤器2种用法

java8 .stream().sorted().filter().map().collect()用法