0

在发送插入的 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)
);

有人可以帮忙吗?

4

1 回答 1

1

您可以使用以下查询:

add(){
   const item = {id: 4,name:'test1',description:'description'}

   if(query.hasEntity(4)) {
     // exists
   }

   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)
);
于 2020-05-20T13:41:50.860 回答