uni-app:通过循环处理数据,通过filter方法查询满足条件的项,通过map方法查询每条数据的具体一项

使用filter方法筛选出checkedtrue的项,并将结果存储在checkedItems数组中

const checkedItems = this.warseinfo.filter(item => item.checked);

使用map方法checkedItems中提取loccode的值,将结果存储在loccodes数组中

const loccodes = checkedItems.map(item => item.loccode);

你可能感兴趣的:(uni-app,uni-app,前端)