我确信这可能是一个初学者问题,但是,我试图同时过滤ongoing
和all_day
。怎么能做到这一点.filter()
呢?
<CurrentRefinements
transformItems={items =>
items.filter(item => item.attribute !== 'ongoing', 'all_day')
}
/>
我确信这可能是一个初学者问题,但是,我试图同时过滤ongoing
和all_day
。怎么能做到这一点.filter()
呢?
<CurrentRefinements
transformItems={items =>
items.filter(item => item.attribute !== 'ongoing', 'all_day')
}
/>