码迷,mamicode.com
首页 > 其他好文 > 详细

前端Vue- v-for 循环中删除 元素;

时间:2020-06-15 14:21:50      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:pre   index   for 循环   splice   tail   indexof   for   confirm   Plan   

出现原因: 在生成的页面数据中,删除其中一个;

解决方法: 页面中的数据是使用vue -》 v-for 绑定的;
使用的方法为

  methods: {
        dt(index, planDetail) {
	var a = confirm("确认删除此任务?");
	if(a == true){
	this.plan.splice(this.plan.indexOf(planDetail),1);
	  }	
         }
        }

其中,一定要确认plan 和 planDetail的数据是否正确;

前端Vue- v-for 循环中删除 元素;

标签:pre   index   for 循环   splice   tail   indexof   for   confirm   Plan   

原文地址:https://www.cnblogs.com/alukaa/p/13130253.html

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