前端不调接口关键字搜索.filter((item) => item.userName.indexOf(val) !== -1)

发布时间:2023年12月29日

代码示例:

  <u-search placeholder="搜索" v-model="keyword" :animation="false" :showAction="false" :clearabled="true" shape="square" @change="searchChange" bgColor="#F6F6F6"></u-search>

//定义变量
data() {
    return {
      userList: [],
      userListCopy: [],
    };
  },

methods: {
    /**搜索 */
    searchChange(val) {
      this.userList = this.userListCopy.filter((item) => item.userName.indexOf(val) !== -1)
    },
}

?

文章来源:https://blog.csdn.net/qq_39695210/article/details/135286452
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。