从数组对象格式的数组中删除指定对象
hSelect(e){ this.tags.push(e) this.state1 = '' this.tags.forEach(i => { this.restaurants3.forEach((item, inx) => { if(item.value == i.value){ this.restaurants3.splice(inx,1) } }) }) this.bd = false },
备注:这里restaurants3和tags都是数组对象格式的,点击触发hSelect事件,被点击元素添加到tags中,如果restaurants3中含有被点击的元素就从restaurants3中删除该元素。