使用键过滤对象数组

Filter an array of objects with keys

你如何过滤一个键数组:你过滤的值在对象中的对象?

你可以这样做:

array.filter((item)=>{return item.someKey==='valueYouWant'})

在您的示例中,您可以这样做:

const filtered=array.filter((item)=>{return item.categoryId<22})