html:<img :src="img" v-for="(img,index) in imgList" :key="index" @load = "imageLoad" @error = "errorLoad(index)" >data() { return { errorArr : [] }; }在img中有一个监听error事件errorLoad(index){ //加载失败时把失败图片删除 this.imageLoad(); this.errorArr.push(index); }后面有一个图片加载完成的事件,打印errorArr的时候,却发现数组有内容但length为0console.log(this.errorArr);console.log(this.errorArr.length);应该如何正常读取它的length
添加回答
举报
0/150
提交
取消