Vue.js 中普通循環使用v-for 指令,遍歷數組或對象並創建元素:語法:v-for="item in items",其中items 為要遍歷的對象,item 為循環項。範例:遍歷 ['apple', 'banana', 'cherry'] 數組,產生
列表。另外,還可以遍歷 { apple: 'red', banana: 'yellow', cherry: 'black' } 物件。特殊屬性::key 用來指定唯一鍵,:index 包含循環項目的索引。可以巢狀迴圈以
Vue.js 中普通迴圈的使用
在Vue.js 中,使用v-for
指令可以遍歷一個陣列或物件並建立對應數量的元素。普通循環語法如下:
<code class="html"><ul> <li v-for="item in items">{{ item }}</li> </ul></code>
語法:
#v-for="item in items"
:定義循環遍歷的對象(items
)和循環項目(item
)。 {{ item }}
:在循環體內渲染循環項目的內容。 範例:
<code class="html"><!-- 遍历数组 --> <ul> <li v-for="item in ['apple', 'banana', 'cherry']">{{ item }}</li> </ul> <!-- 遍历对象 --> <ul> <li v-for="fruit in { apple: 'red', banana: 'yellow', cherry: 'black' }">{{ fruit }}</li> </ul></code>
特殊屬性:
:為每個循環項指定一個唯一鍵,這對於清單操作和資料追蹤非常重要。
:包含循環項目的索引。
巢狀循環:
可以將循環嵌套在一起以遍歷多維資料結構:<code class="html"><ul> <li v-for="group in groups"> <ul> <li v-for="student in group.students">{{ student }}</li> </ul> </li> </ul></code>
#提示:
以上是vue中如何寫普通循環的詳細內容。更多資訊請關注PHP中文網其他相關文章!