列表渲染
1、用 v-for 把一个数组对应为一组元素
v-for 指令需要以 item in items 形式的特殊语法, items 是源数据数组并且 item 是数组元素迭代的别名
<div id="app">
<div v-for="items in todo">{{items.text}}</div>
</div>
<script>
var app = new Vue({
el:"#app",
data:{
todo:[
{text:"吃饭",ok:true},
{text:"睡觉",ok:true},
{text:"打豆豆",ok:true},
]
}
})
</script>
打印结果为:吃饭,睡觉,打豆豆
在 v-for 块中,我们拥有对父作用域属性的完全访问权限。
v-for 还支持一个可选的第二个参数为当前项的索引。
<div id="app">
<div v-for="(items,index) in todo">{{index}}{{items.text}}</div>
</div>
<script>
var app = new Vue({
el:"#app",
data:{
duixiang:{
name:"吴健",
sex:"男",
age:"28"
},
todo:[
{text:"吃饭",ok:true},
{text:"睡觉",ok:true},
{text:"打豆豆",ok:true},
]
}
})
</script>
打印结果为:0吃饭,1睡觉,2打豆豆
1.1、一个对象的 v-for
<div id="app">
<div v-for="(dui,key,index) in duixiang">索引:{{index}}键名:{{key}}:{{dui}}</div>
</div>
<script>
var app = new Vue({
el:"#app",
data:{
duixiang:{
name:"吴健",
sex:"男",
age:"28"
}
}
})
</script>
他可以有多个参数,我们第二参数为键名,第三个位索引
上面的打印结果
2、一个组件的v-for
切记当在组件中使用 v-for 时,key 是必须要有的
<div id="app">
<todos v-for = "(iemts,index) in todo" v-bind:meitiao="iemts.text" :key="index"></todos>
</div>
<script>
Vue.component("todos",{
template:"<div>{{this.meitiao}}<input type = 'button' value='查看'/></div>",
//注册属性
props:["meitiao"]
})
var app = new Vue({
el:"#app",
data:{
todo:[
{text:"吃饭",ok:true},
{text:"睡觉",ok:true},
{text:"打豆豆",ok:true},
]
}
})
</script>
3、对象跟新检测
vue不允许添加根属性
添加属性vue给我们提供了2中方法
第一种Vue.set(目标对象,"属性","值")
第二种app.$set(目标对象,"属性","值")
删除属性vue给我们也提供了2中方法
第一种Vue.delete(目标对象,"属性")
第二种app.$delete(目标对象,"属性")
4、显示过滤+一段取值范围的v-for + v-for on a <template>
4.1、显示过滤
有时,我们想要显示一个数组的过滤或排序副本,而不实际改变或重置原始数据。在这种情况下,可以创建返回过滤或排序数组的计算属性。
例如过滤偶数
<div id="app">
<div v-for="num in evenNum">{{ num }}</div>
</div>
<script>
var app = new Vue({
el:"#app",
data:{
numbers: [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ]
},
computed: {
evenNum: function () {
return this.numbers.filter(function (item) {
return item % 2 === 0;
})
}
}
})
</script>
结果为:
2
4
6
8
4.2、段取值范围的v-for
v-for 也可以取整数。在这种情况下,它将重复多次模板。
<div>
<span v-for="n in 10">{{ n }} </span>
</div>
结果为
1 2 3 4 5 6 7 8 9 10
4.3、v-for on a <template>
<div id="app">
<ul>
<template v-for="item in items">
<li>{{ item.text }}</li>
</template>
</ul>
</div>
<script>
var app = new Vue({
el:"#app",
data:{
items:[
{text:"吃饭",ok:true},
{text:"睡觉",ok:true},
{text:"打豆豆",ok:true},
]
}
})
</script>
打印结果为:吃饭,睡觉,打豆豆
5、数组检测跟新
变异方法(mutation method)
5.1、说白了就是改变被这些方法调用的原始数组。
Vue 包含一组观察数组的变异方法,所以它们也将会触发视图更新。这些方法如下:
push()
pop()
shift()
unshift()
splice()
sort()
reverse()
5.2、非变异方法
例如: filter(), concat() 和 slice() 。
5.2、重塑数组
。这些不会改变原始数组,但总是返回一个新数组。当使用非变异方法时,可以用新数组替换旧数组
example1.items = example1.items.filter(function (item) {
return item.message.match(/Foo/)
})
你可能认为这将导致 Vue 丢弃现有 DOM 并重新渲染整个列表。幸运的是,事实并非如此。 Vue 为了使得 DOM 元素得到最大范围的重用而实现了一些智能的、启发式的方法,所以用一个含有相同元素的数组去替换原来的数组是非常高效的操作。
5.3、注意事项
由于 JavaScript 的限制, Vue 不能检测以下变动的数组:
当你利用索引直接设置一个项时,例如: vm.items[indexOfItem] = newValue
当你修改数组的长度时,例如: vm.items.length = newLength
为了解决第一类问题,以下两种方式都可以实现和 vm.items[indexOfItem] = newValue 相同的效果, 同时也将触发状态更新:
Vue.set(example1.items, indexOfItem, newValue)
// Array.prototype.splice
example1.items.splice(indexOfItem, 1, newValue)
为了解决第二类问题,你可以使用 splice:
example1.items.splice(newLength)
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。