v-for基本使用

  • v-for的基本格式是 “item in 数组”
    • 数组通常是来自data或者prop,也可以是其他方式;
    • item是我们给每项元素起的一个别名,这个别名可以自定来定义;
  • 我们知道,在遍历一个数组的时候会经常需要拿到数组的索引
    • 如果我们需要索引,可以使用格式: “(item, index) in 数组”
    • 注意上面的顺序:数组元素项item是在前面的,索引项index是在后面的;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<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>
<style>
.item {
margin-top: 5px;
background-color: orange;
}

.item .title {
color: red;
}
</style>
</head>
<body>

<div id="app">
<!-- 1.电影列表进行渲染 -->
<h2>电影列表</h2>
<ul>
<li v-for="movie in movies">{{ movie }}</li>
</ul>

<!-- 2.电影列表同时有索引 -->
<ul>
<li v-for="(movie, index) in movies">{{index + 1}} - {{ movie }}</li>
</ul>

<!-- 3.遍历数组复杂数据 -->
<h2>商品列表</h2>
<div class="item" v-for="item in products">
<h3 class="title">商品: {{item.name}}</h3>
<span>价格: {{item.price}}</span>
<p>秒杀: {{item.desc}}</p>
</div>
</div>

<script src="../lib/vue.js"></script>
<script>
// 1.创建app
const app = Vue.createApp({
// data: option api
data() {
return {
// 1.movies
movies: ["星际穿越", "少年派", "大话西游", "哆啦A梦"],

// 2.数组: 存放的是对象
products: [
{ id: 110, name: "Macbook", price: 9.9, desc: "9.9秒杀, 快来抢购!" },
{ id: 111, name: "iPhone", price: 8.8, desc: "9.9秒杀, 快来抢购!" },
{ id: 112, name: "小米电脑", price: 9.9, desc: "9.9秒杀, 快来抢购!" },
]
}
},
})

// 2.挂载app
app.mount("#app")
</script>
</body>
</html>

v-for支持的类型

  • v-for也支持遍历对象,并且支持有一二三个参数:
    • 一个参数: “value in object”;
    • 二个参数: “(value, key) in object”;
    • 三个参数: “(value, key, index) in object”;
  • v-for同时也支持数字的遍历:
    • 每一个item都是一个数字;
  • v-for也可以遍历其他可迭代对象(Iterable)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<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>
</head>

<body>
<div id="app">
<!-- 1.遍历数组 -->

<!-- 2.遍历对象 -->
<ul>
<li v-for="(value, key, index) in info">{{value}}-{{key}}-{{index}}</li>
</ul>

<!-- 3.遍历字符串(iterable) -->
<ul>
<li v-for="item in message">{{item}}</li>
</ul>

<!-- 4.遍历数字 -->
<ul>
<li v-for="item in 100">{{item}}</li>
</ul>
</div>

<script src="../lib/vue.js"></script>
<script>
// 1.创建app
const app = Vue.createApp({
// data: option api
data () {
return {
message: "Hello Vue",
movies: [],
info: { name: "why", age: 18, height: 1.88 }
}
},
})

// 2.挂载app
app.mount("#app")
</script>
</body>

</html>

template元素

  • 类似于v-if,你可以使用 template 元素来循环渲染一段包含多个元素的内容:

    • 我们使用template来对多个元素进行包裹,而不是使用div来完成;

      ![](https://cdn.nlark.com/yuque/0/2023/png/35551100/1688892405580-f45766c8-5b4c-4ca9-8b93-0bae54fd5c40.png)
      

数组更新检测

  • Vue 将被侦听的数组的变更方法进行了包裹,所以它们也将会触发视图更新。
  • 这些被包裹过的方法包括:
    • push()
    • pop()
    • shift()
    • unshift()
    • splice()
    • sort()
    • reverse()
  • 替换数组的方法
    • 上面的方法会直接修改原来的数组;
    • 但是某些方法不会替换原来的数组,而是会生成新的数组,比如 filter()、concat() 和 slice();