将库升级到1.6.1后面临奇怪的问题
版本1.4.8
//items.length is 3
this.$interval((index)=> {console.log(index) // output started from 0
if (index > 2) {console.log(index)
thisObj.$interval.cancel(int);
}
else {
thisObj.lastThreeTransactions.push(items[index]);
}
}, 100, items.length);
版本1.6.1
console.log(index) // output started from 1
由于只有两个项目被推送到新阵列。第1.6个索引值未在版本1.6.1中推送
其他人是否面临同样的问题,是某种错误还是有任何解决方案。请帮忙。