VUE:列表的过滤与排序

Posted it-taosir

tags:

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

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>06_列表渲染_过滤与排序</title>
    </head>
    <body>
        <!--
            1.列表过滤
            2.列表排序
        -->
        
        <div id="test">
            <input type="text" v-model="searchName"/>
            <ul>
                <li v-for="(p,index) in filterPersons" :key="index">
                    {{index}}--{{p.name}}--{{p.age}}
                </li>                    
            </ul>
            
            <button @click="setOrderType(1)">年龄升序</button>
            <button @click="setOrderType(2)">年龄降序</button>
            <button @click="setOrderType(0)">原本顺序</button>
        </div>
        
        <script type="text/javascript" src="../js/vue.js" ></script>
        <script>
            new Vue({
                el: #test,
                data:{
                    persons:[
                        {name:Tom,age:18},
                        {name:Jack,age:16},
                        {name:Bob,age:19},
                        {name:Rose,age:17}
                    ],
                    searchName:‘‘,
                    orderType: 0,    //0代表原本,1代表升序,2代表降序
                },
                computed:{
                    filterPersons(){
                        //取出相关数据
                        const {searchName,persons,orderType}=this 
                        //最终需要显示的数组
                        let fPersons;
                        //对persons进行过滤
                        fPersons=persons.filter(p=> p.name.indexOf(searchName)!==-1)
                        
                        //排序
                        if(orderType!==0){
                            fPersons.sort(function(p1,p2){    //返回负数P1在前,返回正数P2在前
                                //1代表升序,2代表降序
                                if(orderType===2){
                                    return p2.age-p1.age
                                }else{
                                    return p1.age-p2.age
                                }
                                return p2.age-p1.age
                            })
                        }
                        
                        return fPersons
                    }
                },
                methods:{
                    setOrderType(orderType){
                        this.orderType=orderType
                    }
                }
            })
        </script>
    </body>
</html>

 

以上是关于VUE:列表的过滤与排序的主要内容,如果未能解决你的问题,请参考以下文章

Vue 条件渲染,列表渲染,key的作用和原理,列表过滤,列表排序,Vue监测数据原理和注意事项

v-for列表过滤和排序

Vue基础系列列表渲染-—v-forkey=列表过滤_监视属性实现_computed实现_列表实时排序

(尚010)Vue列表的搜素和排序

从 Vue 中的 v-for 列表中删除重复项

列表渲染,key作用与原理,列表过滤,列表排序