鱼C论坛

 找回密码
 立即注册
查看: 3490|回复: 3

有关vue如何获取v-for中的index值

[复制链接]
发表于 2018-8-10 21:36:36 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
正在做一个todolist,想实现点击添加的计划就删除的功能,想法是绑定删除函数,通过index索引删除数组中的那个计划,问题在于如何获取index?
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>
    <title>Document</title>
</head>
<body>

    <div id="root">
        <input type="text" autofocus="autofocus" v-model="inputValue">
        <button @click="handleSubmit">提交</button>
        <ul>
            <li v-for="(item, index) of list" :key="index" @click="handleDelete">{{item}}</li>
        </ul>
    </div>

    <script>
        new Vue({
            el: "#root",
            data: {
                inputValue: '',
                list: []
            },
            methods: {
                handleSubmit: function() {
                    this.list.push(this.inputValue)
                    this.inputValue = ''
                },
                
                handleDelete: function() {
                    //this.list.splice(, 1)
                }
                
            }
        })
    </script>
</body>
</html>
NKCIZYIG])PJ533MX]29EP7.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2018-8-10 21:37:08 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2018-8-10 22:43:46 | 显示全部楼层
路过学习
this.list.splice(index,1)   ?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2018-8-11 09:49:52 | 显示全部楼层
解决了,谢谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 07:33

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表