概述
使用v-for遍历对象在真实的开发中比较少见,了解即可。
对象我更喜欢统一称之为字典,假如你哪天发现我在某个前端的教程中把对象叫做字典,请你知道这两个是同一个玩意儿。
所谓字典,就是一种key-value类型的结构的统称。
比如,用户信息中有name表示姓名,age表示年龄,gender表示性别,这里的name,age,gender叫做key,他们记录的值,比如张三,22,男则叫做value。
现在我们学习一下,如何使用v-for去遍历一个字典。
基本用法
我们创建src/components/Demo21.vue,在这个组件中,我们要:
- 1:定义user,表示用户信息,有name,age,gender三个字段
- 2:使用ul无序列表加v-for遍历user用户信息并输出用户的姓名,年龄,性别
代码如下:
<script setup>
const user = {
name: "张三",
age: 23,
gender: "男"
}
</script>
<template>
<div>
<ul>
<li v-for="(v,k,i) in user" :key="i">
<span style="color: yellowgreen">index={{ i }}</span>
<span style="color: darkred">key={{ k }}</span>
<span style="color: cornflowerblue">value={{ v }}</span>
</li>
</ul>
</div>
</template>
<style>
span{
margin: 15px;
}
</style>
接着,我们修改src/App.vue,引入Demo21.vue并进行渲染:
<script setup>
import Demo from "./components/Demo21.vue"
</script>
<template>
<h1>欢迎跟着Python私教一起学习Vue3入门课程</h1>
<hr>
<Demo/>
</template>
然后,我们浏览器访问:http://localhost:5173/
完整代码
package.json
{
"name": "hello",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build"
},
"dependencies": {
"vue": "^3.3.8"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.0",
"vite": "^5.0.0"
}
}
vite.config.js
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
})
index.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
src/main.js
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')
src/App.vue
<script setup>
import Demo from "./components/Demo21.vue"
</script>
<template>
<h1>欢迎跟着Python私教一起学习Vue3入门课程</h1>
<hr>
<Demo/>
</template>
src/components/Demo21.vue
<script setup>
const user = {
name: "张三",
age: 23,
gender: "男"
}
</script>
<template>
<div>
<ul>
<li v-for="(v,k,i) in user" :key="i">
<span style="color: yellowgreen">index={{ i }}</span>
<span style="color: darkred">key={{ k }}</span>
<span style="color: cornflowerblue">value={{ v }}</span>
</li>
</ul>
</div>
</template>
<style>
span{
margin: 15px;
}
</style>
启动方式
yarn
yarn dev
浏览器访问:http://localhost:5173/