溫馨提示×

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

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

如何在Vue中遍歷數(shù)組

發(fā)布時(shí)間:2021-05-20 17:49:50 來(lái)源:億速云 閱讀:521 作者:Leah 欄目:web開(kāi)發(fā)

本篇文章給大家分享的是有關(guān)如何在Vue中遍歷數(shù)組,小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。

1、foreach

  foreach循環(huán)對(duì)不能使用return來(lái)停止循環(huán)

 search(keyword){
     var newList = []
     this.urls.forEach(item =>{
      if(item.name.indexOf(keyword) != -1){
       newList.push(item)
      }
     })
     return newList
    }

2、filter

  item對(duì)象就是遍歷數(shù)組中的一個(gè)元素,includes是es6中的新方法,在search方法中直接返回新數(shù)組

 search(keyword){
     return this.urls.filter(item =>{
      if(item.name.includes(keyword)){
       return item
    }
  })
 }

3、findIndex

  返回true后index就可以獲取到匹配的元素在進(jìn)行刪除

del(row){
     this.$confirm("確定要?jiǎng)h除嗎?", "刪除").then(action=>{
     var index = this.urls.findIndex(item =>{
      if(item.name == row.name){
       return true;
      }
     })
     this.urls.splice(index, 1)
});

4、some

  如果匹配成功就return true跳出some的循環(huán)

del(row){
    this.$confirm("確定要?jiǎng)h除嗎?", "刪除").then(action=>{
      this.urls.some((item, i) =>{
      if(item.name == row.name){
       this.urls.splice(i, 1)
       return true;
      }
     }) 
  });
}

5、上例子,在一個(gè)vue的data中存入一個(gè)固定的數(shù)組,對(duì)數(shù)組進(jìn)行遍歷,實(shí)現(xiàn)搜索功能,刪除功能

  在el-table中 :data中綁定一個(gè)方法,方法中對(duì)固定的數(shù)組urls進(jìn)行遍歷,返回一個(gè)新的數(shù)組實(shí)現(xiàn)搜索功能

<template>
  <div>
   <label >
   搜索關(guān)鍵字:
   <input type="text" class="form-control" v-model="keyword">
  </label>
    <el-table :data="search(keyword)" size="small" :stripe="true" :border="true" @select="select" @select-all="select">
      <el-table-column type="selection"></el-table-column>
      <el-table-column type="index"></el-table-column>
      <el-table-column label="網(wǎng)站名" prop="name" width="200">
        <template slot-scope="slot">
          <a href="slot.row.url" target="_blank">{{slot.row.name}}</a>
        </template>
      </el-table-column>
      <el-table-column label="網(wǎng)址" prop="url"></el-table-column>
      <el-table-column label="類型" prop="type" width="50"></el-table-column>
      <el-table-column label="國(guó)家" prop="country" width="50"></el-table-column>
      <el-table-column label="操作" width="50">
        <template slot-scope="slot">
          <el-button size="mini" type="text" icon="el-icon-delete" @click="del(slot.row)"></el-button>
        </template>
      </el-table-column>
    </el-table>
    <el-divider content-position="left">表格操作</el-divider>
    <el-button @click="batchDelete" type="danger" icon="el-icon-delete" size="small">批量刪除</el-button>
  </div>
</template>
<script>
  export default {
    data() {
      return {
    keyword:'',
        selections: [],
        urls: [{
            name: "新浪",
            url: "http://www.sina.com",
            type: "資訊",
            country: "中國(guó)"
          },
          {
            name: "騰訊",
            url: "http://www.tencent.com",
            type: "聊天",
            country: "中國(guó)"
          },
          {
            name: "谷歌",
            url: "http://www.google.com",
            type: "資訊",
            country: "美國(guó)"
          },
          {
            name: "韜睿",
            url: "http://www.51i-star.com",
            type: "教育",
            country: "中國(guó)"
          }
        ]
      };
    },
    methods: {
      del(row){
        this.$confirm("確定要?jiǎng)h除嗎?", "刪除").then(action=>{
     /* this.urls.some((item, i) =>{
      if(item.name == row.name){
       this.urls.splice(i, 1)
       return true;
      }
     }) */
     var index = this.urls.findIndex(item =>{
      if(item.name == row.name){
       return true;
      }
     })
     this.urls.splice(index, 1)
        });
      },
      select(selections, row) {
        this.selections = selections;
      },
      batchDelete() {
        this.$confirm("確定要?jiǎng)h除嗎?", "刪除")
          .then(action => {
            for (var i = this.urls.length - 1; i >= 0; i--) {
              for (var j = this.selections.length - 1; j >= 0; j--) {
                if (this.urls[i].name == this.selections[j].name) {
                  this.urls.splice(i, 1);
                  break;
                }
              }
            }
          })
          .catch(error => {
            alert(error);
            this.$message('刪除取消');
          });
      },
   search(keyword){
    /* var newList = []
    this.urls.forEach(item =>{
     if(item.name.indexOf(keyword) != -1){
      newList.push(item)
     }
    })
    return newList */
    return this.urls.filter(item =>{
     if(item.name.includes(keyword)){
      return item
     }
    })
   }
    }
  }
</script>
<style>
</style>

Vue的優(yōu)點(diǎn)

Vue具體輕量級(jí)框架、簡(jiǎn)單易學(xué)、雙向數(shù)據(jù)綁定、組件化、數(shù)據(jù)和結(jié)構(gòu)的分離、虛擬DOM、運(yùn)行速度快等優(yōu)勢(shì),Vue中頁(yè)面使用的是局部刷新,不用每次跳轉(zhuǎn)頁(yè)面都要請(qǐng)求所有數(shù)據(jù)和dom,可以大大提升訪問(wèn)速度和用戶體驗(yàn)。

以上就是如何在Vue中遍歷數(shù)組,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

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

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

vue
AI