我在我的ANgular项目中使用ngx-pipes插件(https://github.com/danrevah/ngx-pipes#filterby)。而且我找不到按多个属性过滤的方法。
我的数据看起来像这样
[{'name': 'tom', 'age':12, location:'denver'},
{'name': 'jerry', 'age':11, location:'denver'},
{'name': 'scott', 'age':12, location:'denver'},
{'name': 'tiger', 'age':13, location:'colarado'},
{'name': 'lion', 'age':11, location:'denver'}]
现在,我想使用filterBy管道来过滤年龄为11岁,位置为“丹佛”的数据。
请帮助我。