Vue中想要写for循环,但发现会报错:解决方案:不用 const 定义 i ,使用 let 定义
const delete= () =>{
console.log('批量删除执行...')
const batchLength = pageHelper.selectRecords.length
for( const i=0 ; i < batchLength ; i++ ){
console.log(pageHelper.selectRecords[i].id)
}
}
这时我们就需要把for( const i=0 ; i < batchLength ; i++ )
中的const改成let:
即:for( let i=0 ; i < batchLength ; i++ )
就可以解决问题