码迷,mamicode.com
首页 > 编程语言 > 详细

vue_v-for_遍历数组_遍历对象

时间:2019-02-15 15:30:54      阅读:544      评论:0      收藏:0      [点我收藏+]

标签:splice   com   key   rev   tps   mil   eth   界面更新   methods   

1. v-for 遍历数组

html

  • <div id="test">
        <ul>
            <li v-for="(p, index) in persons" :key="index">
                {{p.name}}
                {{p.age}}<br />
                <button @click="deleteP(idnex)">删除 - 变异方法:vue 监测数组的相关方法</button><br />
                <button @click="updateP(index, {name: "kjf", age:18})">更新 - 重写增加了界面更新 push/pop/splice/sort/reverse/shift/unshift</button>
            </li>
        </ul>
    </div>

js

  • new Vue({
        el: "#test",
        data:{
             persons:[
                 {name: "Tom", age: 14},
                 {name: "Jack", age: 17},
                 {name: "Rose", age: 15},
                 {name: "Jerry", age: 18},
                 {name: "Kate", age: 16}
             ]
        },
        methods:{
            deleteP(index){
                this.persons.splice(index, 1)
            }
            updateP(index, newP){
                this.persons.splice(index, 1, newP)
            }
        }
    })

 

2. v-for 遍历对象

html

  • <div id="test">
        <ul>
            <li v-for="(value, key) in persons[1]" :key="key">
                {{key}}----{{value}}
            </li>
        </ul>
    </div>

 

vue_v-for_遍历数组_遍历对象

标签:splice   com   key   rev   tps   mil   eth   界面更新   methods   

原文地址:https://www.cnblogs.com/tianxiaxuange/p/10383685.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!