溫馨提示×

溫馨提示×

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

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

Vue中列表渲染指令v-for怎么使用

發(fā)布時間:2023-04-21 15:45:31 來源:億速云 閱讀:115 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“Vue中列表渲染指令v-for怎么使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Vue中列表渲染指令v-for怎么使用”吧!

一、原理概述

v-for指令時在模板編譯的代碼生成階段實現(xiàn)的,當(dāng)遍歷數(shù)組或?qū)ο髸r需要使用列表渲染指令v-for。當(dāng)Vue.js用v-for正在更新已渲染過的元素列表時,它默認(rèn)用"就地復(fù)用"策略。如果數(shù)據(jù)項的數(shù)據(jù)被改變,Vue.js將不再移動DOM元素來匹配數(shù)據(jù)項的改變,而是簡單復(fù)用此處每個元素,并確保它在特定索引下顯示已被渲染過的每個元素。

二、基本用法

v-for是Vue.js的循環(huán)語句,它的表達(dá)式需要結(jié)合著in或者of來使用,類似item in items的形式。

(1)v-for循環(huán)普通數(shù)組

示例:

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="../../vue-2.7.14.js"></script>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
 
        #root {
            width: 800px;
            height: 600px;
            background-color: yellowgreen;
            margin: 0 auto;
            text-align: center;
            padding: 30px;
        }
 
        .basic {
            margin: 0 auto;
            border: 1px solid black;
        }
    </style>
</head>
 
<body>
    <div id="root">
        <h3>v-for遍歷數(shù)組</h3>
        <div  class="basic">
            <p v-for="(item,index) in lists" :key="index">
                {{index}}------{{item}}
            </p>
        </div>
 
    </div>
    <script>
        const vm = new Vue({
            el: '#root',
            data: {
                lists:["java程序設(shè)計","android程序設(shè)計","php程序設(shè)計","呵呵呵"],
 
            },
            methods: {
 
            }
        })
    </script>
</body>
 
</html>

執(zhí)行結(jié)果:

Vue中列表渲染指令v-for怎么使用

在表達(dá)式中,lists數(shù)組,item當(dāng)前一條數(shù)據(jù)index代表當(dāng)前索引值。列表渲染也可以用in來代替of作為分隔符。代碼中還有一個key屬性,key屬性可以提高循環(huán)的性能

(2)v-for循環(huán)對象

示例:

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="../../vue-2.7.14.js"></script>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
 
        #root {
            width: 800px;
            height: 600px;
            background-color: yellowgreen;
            margin: 0 auto;
            text-align: center;
            padding: 30px;
        }
 
        .basic {
            margin: 0 auto;
            border: 1px solid black;
            line-height: 30px;
        }
    </style>
</head>
 
<body>
    <div id="root">
        <h3>v-for遍歷對象</h3>
        <div class="basic">
            <p v-for="(value,name,index) in car">
                {{index}}-----{{name}}------{{value}}
            </p>
        </div>
 
    </div>
    <script>
        const vm = new Vue({
            el: '#root',
            data: {
                car: {
                    name: "奧迪a8",
                    color: "黑色",
                    Number: "124215dhsdhsdf"
                }
            },
            methods: {
 
            }
        })
    </script>
</body>
 
</html>

執(zhí)行結(jié)果:

Vue中列表渲染指令v-for怎么使用

(3)v-for循環(huán)對象數(shù)組

示例:

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="../../vue-2.7.14.js"></script>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
 
        #root {
            width: 800px;
            height: 600px;
            background-color: yellowgreen;
            margin: 0 auto;
            text-align: center;
            padding: 30px;
        }
 
        .basic {
            margin: 0 auto;
            border: 1px solid black;
        }
    </style>
</head>
 
<body>
    <div id="root">
        <h3>v-for遍歷對象數(shù)組</h3>
        <div class="basic">
            <p v-for="(item,index) in persons">
                {{index}}-----{{item.id}}-----{{item.name}}-----{{item.age}}
            </p>
        </div>
 
    </div>
    <script>
        const vm = new Vue({
            el: '#root',
            data: {
                persons: [
                    { id: "0001", name: "張三", age: "18" },
                    { id: "0002", name: "李四", age: "18" },
                    { id: "0003", name: "王五", age: "28" }
                ]
            },
            methods: {
 
            }
        })
    </script>
</body>
 
</html>

執(zhí)行結(jié)果:

Vue中列表渲染指令v-for怎么使用

(4)v-for迭代整數(shù) 

示例:

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="../../vue-2.7.14.js"></script>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
 
        #root {
            width: 800px;
            height: 600px;
            background-color: yellowgreen;
            margin: 0 auto;
            text-align: center;
            padding: 30px;
        }
 
        .basic {
            margin: 0 auto;
            border: 1px solid black;
        }
    </style>
</head>
 
<body>
    <div id="root">
        <h3>v-for迭代整數(shù)</h3>
        <div  class="basic">
            <p v-for="count of 10">
                {{count}}
            </p>
        </div>
 
    </div>
    <script>
        const vm = new Vue({
            el: '#root',
        })
    </script>
</body>
 
</html>

執(zhí)行結(jié)果:

Vue中列表渲染指令v-for怎么使用

到此,相信大家對“Vue中列表渲染指令v-for怎么使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

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

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

AI