中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

丰县| 巴林左旗| 安塞县| 乌什县| 于都县| 克什克腾旗| 九江市| 建水县| 迁西县| 抚州市| 海丰县| 冕宁县| 新津县| 凭祥市| 张家界市| 云阳县| 灵川县| 团风县| 衡阳市| 慈溪市| 呼和浩特市| 梅河口市| 海宁市| 奇台县| 宜丰县| 霍林郭勒市| 涟水县| 巴青县| 霸州市| 涪陵区| 阿拉尔市| 肥城市| 兴仁县| 望奎县| 新宁县| 疏勒县| 潞城市| 伊金霍洛旗| 隆德县| 收藏| 淳化县|