您好,登錄后才能下訂單哦!
vue中循環遍歷使用的指令是v-for
1.v-for遍歷數組
(1)value in arr 遍歷數組中的元素
(2)(value,index) in arr 遍歷數組中的元素和數組下標
運行代碼:
<body> <div class="box"> <ul> <li v-for="value in arr">{{value}}</li><br> <li v-for="(value,index) in arr">{{value}}--{{index}}</li> </ul> </div> <script src="js/vue.js"></script> <script> new Vue({ el:".box", data:{ arr:["哈哈","嘻嘻","哼哼"] } }); </script> </body>
輸出結果:
2.v-for遍歷json對象
(1)value in json 遍歷json對象中的值
(2)(value,key) in json 遍歷json對象中的值和鍵
(3)(value,key,index) in json 遍歷json對象中的值、鍵和索引
運行代碼:
<body> <div class="box"> <ul> <li v-for="value in json">{{value}}</li><br> <li v-for="(value,key) in json">{{value}}--{{key}}</li><br> <li v-for="(value,key,index) in json">{{value}}--{{key}}--{{index}}</li> </ul> </div> <script src="js/vue.js"></script> <script> new Vue({ el:".box", data:{ json:{ baidu:"百度", souhu:"搜狐", sougou:"搜狗" } } }); </script> </body>
輸出結果:
3.v-for遍歷整數
(1)n in 整數 遍歷1~整數,整數從1開始
(2)(n,index) in 整數 遍歷1~整數,整數從1開始,索引從0開始
運行代碼:
<body> <div class="box"> <ul> <li v-for="n in 3">{{n}}</li><br> <li v-for="(n,index) in 3">{{n}}--{{index}}</li> </ul> </div> <script src="js/vue.js"></script> <script> new Vue({ el:".box", data:{ } }); </script> </body>
輸出結果:
當然,v-for也可以在template中使用,但是這個我不想寫了
總結
以上所述是小編給大家介紹的vue中常見循環遍歷指令的使用 v-for,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。