亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue怎么實現實時搜索顯示功能

發布時間:2022-04-18 13:42:44 來源:億速云 閱讀:183 作者:iii 欄目:開發技術

這篇“vue怎么實現實時搜索顯示功能”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“vue怎么實現實時搜索顯示功能”文章吧。

效果如下

vue怎么實現實時搜索顯示功能

<template>
//綁定搜索的關鍵字
<input type="text" class="form-control" placeholder="搜索" v-model="filterInput"/>

 <table  class="table table-striped">
      <thead>
        <tr>
          <th>姓名</th>
          <th>電話</th>
          <th>郵箱</th>
          <th></th>
        </tr>
      </thead>
      <tbody>
        <!-- 遍歷搜索的東西,觸發filterBy方法遍歷的時候和搜索框內容進行匹配 例如name-->
        <!-- 如果不搜索,遍歷的就是所有數據 -->
        <tr v-for="(item,index) in filterBy(customer,filterInput)" :key="index">
          <td>{{item.name}}</td>
          <td>{{item.phone}}</td>
          <td>{{item.email}}</td>
          <!-- 通過對應的id查看詳情  拼接id-->
          <!-- 在details中通過攜帶id發送后臺請求數據:to是因為to現在的值是變量要綁定,如果是單純的字符串就不需要綁定-->
          <td>
            <!-- <router-link class="btn btn-default" :to="'/customer/'+item[index]._id" >查看詳情</router-link> -->
            <!-- <router-link class="btn btn-default" :to="'/customer/'+item._id"  >查看詳情</router-link> -->
            <div class="btn btn-default"  @click="handleclick(item)">查看詳情</div>
          </td>
        </tr>
      </tbody>
    </table>
    
</template>

<script>
export default {
  name: "customers",
  data() {
    return {
      customer: [],
      filterInput:"",
      childrenmag:''
    };
  },
    methods: {
    // 異步請求數據
    async fetchCustomers() {
      const res = await this.$http.get("/users");
      this.customer = res.data;
    },
    filterBy(customers, inputvalue) {
      // filter方法遍歷整個數組
      return customers.filter(customer => {
        // 注意match不能遍里數字,true,false
        return customer.name.match(inputvalue);
      });
    }
    }
</script>

filterBy方法查找對應關鍵字的那條數據。

以上就是關于“vue怎么實現實時搜索顯示功能”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

文成县| 武安市| 蛟河市| 马边| 阿克| 托克逊县| 中宁县| 正定县| 于田县| 景洪市| 萍乡市| 山阳县| 溧水县| 电白县| 汾西县| 资兴市| 南投市| 霸州市| 龙岩市| 中卫市| 辽源市| 姜堰市| 崇仁县| 夏河县| 巴彦淖尔市| 会昌县| 泗阳县| 凉城县| 和硕县| 镇康县| 东乡县| 尚义县| 安顺市| 光泽县| 城固县| 珠海市| 上栗县| 泾阳县| 通城县| 龙泉市| 陆河县|