gpt4 book ai didi

vue中提示$index is not defined错误的解决方式

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章vue中提示$index is not defined错误的解决方式由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

今天学习Vue中遇到了一个报错信息:$index is not defined,是我写了个for循环在HTML中,然后是因为版本的问题 。

下面是解决方法:

原来的是 v-for="person in items" 。

v-on:click="deletePerson($index)"//这个仅仅适用于1.0版本,不要采坑了同学们 。

这个在Vue1.0版本中式适用的可以直接使用$index,但是在2.0是不适合的 。

在Vue 2.0版本中获取索引我们需要通过 v-for = "(person ,index) in items ", 点击事件我们也不能使用$index,应该使用 。

v-on:click="deletePerson(index)" 。

补充知识:vue中滚动页面,改变样式&&导航栏滚动时,样式透明度修改 。

.vue 。

<div class="commonHeader" v-bind:class="{ 'navActive': scrollFlag }"> 。

<img src="@/images/home/icon_jdjr.png" v-bind:class="{ 'scrollFlag': scrollFlag }"> 。

data 。

scrollFlag:false.

mounted 。

window.addEventListener('scroll', this.handleScroll) 。

methods 。

?
1
2
3
4
5
6
7
8
9
10
handleScroll () {
  let _this= this ;
  var scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop
  // console.log(scrollTop)
  if (scrollTop){
   _this.scrollFlag= true
  } else {
   _this.scrollFlag= false
  }
}

以上这篇vue中提示$index is not defined错误的解决方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我.

原文链接:https://blog.csdn.net/shaleilei/article/details/79145593 。

最后此篇关于vue中提示$index is not defined错误的解决方式的文章就讲到这里了,如果你想了解更多关于vue中提示$index is not defined错误的解决方式的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com