在发送插入的 API 请求之前,我想检查该项目是否已经存在于商店中,如果不存在则只发送插入请求。
add(){
const item = {id: 4,name:'test1',description:'description'}
// here i want to check whether test1 already exist or not
this.store.add(item);
this.httpService.insert(item).subscribe(
result => {
this.messageService.handleSuccess('inserted');
this.store.updateId(id, result.id);
},
error => this.messageService.handleError('error on insert:', error)
);
有人可以帮忙吗?