我需要帮助,我阻止因为我想将表的索引1传递给0而索引2传递给1(索引2到0,索引3到1)在下一个按钮浏览一个表...怎么办?谢谢
var i=1;
this.current.valItems.forEach((value, key) => {
if (value==i) {
this.current.afficheItems[value]=this.current.afficheItems[key]="0";
} else {
this.current.afficheItems[value]="1";
}
});