数组移除元素
// 移除无效元素 ---forEach()不行
// res.forEach((el, i,array) => {
// if (el.items==null) {
// array.splice(i, 1);
// i--
// }
// });
for (let i = 0; i < res.length; i++) {
res.splice(i, 1);
i--
}
--by Affandi ⊙▽⊙
网友评论