我创建了一个“过滤器”函数,它接收一个对象数组.每个对象都有一个accountId属性.我的函数应该过滤掉具有不同accountId的对象.然而,它正在那里推动一个未定义的对象.
我的功能出了什么问题?
export const filterItems = (myArray,accountId) => { let filteredItems = []; filteredItems.push(myArray.find(items => items.accountId === accountId)); return filteredItems; }
当我将accountId传递给不在数组中的函数时,输出是一个数组,其中包含一个项目,该项目未定义 – 请参阅下文:
[ 0: undefined ]
我究竟做错了什么?
解决方法
你可以只过滤数组并返回一个空数组,如果没有找到.
export const filterItems = (myArray,accountId) => myArray.filter(items => items.accountId === accountId);