在用uni-app,在页面中循环组件并传递下标。

源码码头网 其他问答 1

在组件中的js代码‘transmitIndex’是我的点击事件。index传过来就是父页面循环产生的下标

data() {
        return {
            transmitIndexInfo: -1,
        };
    },
props: ['item','index'],
methods:{
  transmitIndex() {
  this.transmitIndexInfo = this.index;
console.log(this.transmitIndexInfo == this.idnex);
  }
}

回复

共2条回复 我来回复
  • 代码工厂
    这个人很懒,什么都没有留下~
    评论

    你把你打印这块的完整代码截图看看! 原理上,单纯看这里,应该是true

    this.transmitIndexInfo = this.index;
    console.log(this.transmitIndexInfo == this.idnex);
    
    0条评论
  • 代码向导
    这个人很懒,什么都没有留下~
    评论

    你写错了,是

    console.log(this.transmitIndexInfo == this.index)
    
    0条评论

发表回复

登录后才能评论