您好,登錄后才能下訂單哦!
vue中循環(huán)遍歷使用的指令是v-for
1.v-for遍歷數(shù)組
(1)value in arr 遍歷數(shù)組中的元素
(2)(value,index) in arr 遍歷數(shù)組中的元素和數(shù)組下標(biāo)
運(yùn)行代碼:
<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>
輸出結(jié)果:
2.v-for遍歷json對象
(1)value in json 遍歷json對象中的值
(2)(value,key) in json 遍歷json對象中的值和鍵
(3)(value,key,index) in json 遍歷json對象中的值、鍵和索引
運(yùn)行代碼:
<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>
輸出結(jié)果:
3.v-for遍歷整數(shù)
(1)n in 整數(shù) 遍歷1~整數(shù),整數(shù)從1開始
(2)(n,index) in 整數(shù) 遍歷1~整數(shù),整數(shù)從1開始,索引從0開始
運(yùn)行代碼:
<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>
輸出結(jié)果:
當(dāng)然,v-for也可以在template中使用,但是這個(gè)我不想寫了
總結(jié)
以上所述是小編給大家介紹的vue中常見循環(huán)遍歷指令的使用 v-for,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。