过滤案例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="vue.js"></script>
</head>
<body>
<div id="app">
    <input type="text" v-model="s" @input="handleInput">
    <ul>
        <li v-for="str in strList2" v-text="str"></li>
    </ul>
</div>
</body>
<script>
    const app = Vue.createApp({
        data() {
            return {
                s: '',
                strList: ['a', 'ab', 'abc', 'abcd', 'abcde', 'abcdef', 'abcdefg'],
                strList2: [],
            }
        },
        methods: {
            handleInput() {
                //箭头函数没有自己的this
                this.strList2 = this.strList.filter(item => {
                    //indexOf不存在返回-1,存在返回索引
                    return item.indexOf(this.s) > -1
                })
            }
        }
    })
    app.mount("#app")
</script>
</html>

结果

image

本文作者:Sherwin

本文链接:https://www.cnblogs.com/sherwin1995/p/16810456.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。

posted @   Sherwin_szw  阅读(14)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示
💬
评论
📌
收藏
💗
关注
👍
推荐
🚀
回顶
收起
  1. 1 404 not found REOL
404 not found - REOL
00:00 / 00:00
An audio error has occurred.