zoukankan      html  css  js  c++  java
  • vue搜索/*触发一个方法,第一个只是数组,第二个是输入的值,对比数组和输入的是否匹配*/

        <input type="text" placeholder="搜索" v-model="filterinput"  class="form-control">

    return {
    msg: 'Welcome to Your Vue.js App',
    customers:[],
    alert:"",
    filterinput:""
    }

    /*触发一个方法,第一个只是数组,第二个是输入的值,对比数组和输入的是否匹配*/

    <tr v-for="(customer,index) in filterby(customers,filterinput)">
    <th scope="row">{{customer.name}}</th>
    <td>{{customer.phone}}</td>
    <td>{{customer.tel}}</td>
    <td>{{customer.email}}</td>
    <td>{{customer.id}}</td>
    <td><router-link v-bind:to="'/customerdetail/'+customer.id">详情</router-link></td>
    </tr>

    filterby(customers,value){
    /*遍历数组*/
    return customers.filter(function(customer){
    return customer.name.match(value)
    })

    }

  • 相关阅读:
    一步一步本地化部署mapbox-gl
    快速排序
    合并排序
    冒泡排序
    选择排序
    插入排序
    mapbox-gl象形文字字体glyph生成
    前端html
    Mysql练习
    Mysql语句
  • 原文地址:https://www.cnblogs.com/xzhce/p/12829358.html
Copyright © 2011-2022 走看看