溫馨提示×

溫馨提示×

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

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

vue怎么實現(xiàn)實時搜索顯示功能

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

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

效果如下

vue怎么實現(xiàn)實時搜索顯示功能

<template>
//綁定搜索的關(guān)鍵字
<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>
        <!-- 遍歷搜索的東西,觸發(fā)filterBy方法遍歷的時候和搜索框內(nèi)容進行匹配 例如name-->
        <!-- 如果不搜索,遍歷的就是所有數(shù)據(jù) -->
        <tr v-for="(item,index) in filterBy(customer,filterInput)" :key="index">
          <td>{{item.name}}</td>
          <td>{{item.phone}}</td>
          <td>{{item.email}}</td>
          <!-- 通過對應(yīng)的id查看詳情  拼接id-->
          <!-- 在details中通過攜帶id發(fā)送后臺請求數(shù)據(jù):to是因為to現(xiàn)在的值是變量要綁定,如果是單純的字符串就不需要綁定-->
          <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: {
    // 異步請求數(shù)據(jù)
    async fetchCustomers() {
      const res = await this.$http.get("/users");
      this.customer = res.data;
    },
    filterBy(customers, inputvalue) {
      // filter方法遍歷整個數(shù)組
      return customers.filter(customer => {
        // 注意match不能遍里數(shù)字,true,false
        return customer.name.match(inputvalue);
      });
    }
    }
</script>

filterBy方法查找對應(yīng)關(guān)鍵字的那條數(shù)據(jù)。

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

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI