让我说我有一大堆像对象一样的对象,我只对包含类别id等于特定id的对象感兴趣(在这种情况下myId变量,我试过这样的东西,但我不能得到我想要的输出
$(".category").on("click", function(e) {
e.preventDefault();
const myId = $(this).attr('id');
for(const v of app['List']) {
const nn = Object.keys(v).map((key) => key === 'categories');
console.log(nn,'nnnn')
}
})
我只需要List对象的内容,其类别id等于特定或用户提供的id