Bootstrap

前端数组对象去重

前端数组对象去重

const list = this.productList.concat(res.page.list)
this.productList = [...new Set(list.map(e => JSON.stringify(e)))].map(e => JSON.parse(e)) 

注:去重数组对象中重复的数据

;