我正在尝试使用“多项选择”下拉列表中的值来过滤表中的数据。我表上的数据是来自webAPI的json脚本
我试图做这样的事情。
UNSTABLE
这是我的多个下拉列表中的值:
onSubmit(data){
this.sample = this.posts$.filter(x => x.value == hey)
console.log(this.userForm.value);
}
这是我桌子上的数据。
0: {id: 1, name: "Leanne Graham", isDisabled: undefined}
1: {id: 2, name: "Ervin Howell", isDisabled: undefined}
2: {id: 3, name: "Clementine Bauch", isDisabled: undefined}
请帮助,我只是角度的初学者,我不知道如何使用下拉菜单中的选定值过滤表格中的值