Vue中v-for的資料分組執行個體,vuev-for分組執行個體

來源:互聯網
上載者:User

Vue中v-for的資料分組執行個體,vuev-for分組執行個體

使用Vue.js可以很方便的實現資料的綁定和更新,有時需要對一個一維數組進行分組以方便顯示,迴圈可以直接使用v-for,那分組呢?這裡需要用到vue的computed特性,將資料動態計算分組。

代碼如下:

<!DOCTYPE html><html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <meta charset="utf-8" /> <script src="Scripts/vue.js"></script></head><body> <!--這是我們的View--> <div id="app">  <table>   <tbody>    <tr v-for="(row,i) in listTemp">     <td v-for="(cell,j) in row">      <div :id="'T_'+(i*3+j)">Data-{{cell}}</div>     </td>    </tr>   </tbody>  </table> </div></body></html><script src="Scripts/vue.js"></script><script> // 建立一個 Vue 執行個體或 "ViewModel" // 它串連 View 與 Model new Vue({  el: '#app',  data: {   list: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]  },  computed: {   listTemp: function () {    var list = this.list;    var arrTemp = [];    var index = 0;    var sectionCount = 3;    for (var i = 0; i < list.length; i++) {     index = parseInt(i / sectionCount);     if (arrTemp.length <= index) {      arrTemp.push([]);     }     arrTemp[index].push(list[i]);    }    return arrTemp;   }  }, })</script>

在computed中以3個元素為一組來動態分組,在綁定資料的地方使用嵌套的v-for迴圈,結果如(3列4行)

這裡還對包裹資料的每個div的id作了特別的處理,動態產生id,每個id都有一個字串首碼T,後面是資料的索引,索引採用i*3+j計算獲得,以便於對應到原始的資料list。

以上這篇Vue中v-for的資料分組執行個體就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援幫客之家。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.