在比较时,尝试返回array1
的字段和array2
的另一个字段。
我有两个对象数组(客户和客户)。我想返回客户ID和客户ID,其中客户ID等于客户ID。为此,我想使用map,filter,但无法弄清楚在下面如何使用,
let clientcontract=this.state.addclient.filter(client=>{
return(
this.state.customer.filter(cust=>{
return (
cust.id===client.id // comparing customer and client id
)
})
)
});
此方法用于获取客户ID和客户ID相同的字段,但是不知道如何获取客户名称和客户ID并返回客户合同,因为我是第一次使用过滤器,因此面临问题在里面。