删除方法中的HTTP错误无法正常工作

时间:2019-03-25 05:18:15

标签: angular http angular7

使用Http Delete方法时遇到一个问题。我有一个伪造API的URL。地址是这样的:

private URL = 'http://jsonplaceholder.typicode.com/posts';

我使用get方法并将其存储在名称为data的变量中,并使用它动态生成一个表,如下所示:

<table class="table table-bordered">
    <thead>
        <tr>
            <th>userId</th>
            <th>id</th>
            <th>title</th>
            <th>Tools</th>

        </tr>
        <tr>
            <th><input type="text" #userId></th>
            <th><input type="text" #id></th>
            <th><input type="text" #title></th>

        </tr>
    </thead>
    <tbody>
        <tr *ngFor="let item of data">
            <td>{{item.userId}}</td>
            <td>{{item.id}}</td>
            <td>{{item.title}}</td>
            <td><button class="btn btn-warning" (click)="updateItem(item)">Update</button>
                <button class="btn btn-danger" (click)="deleteData(item)">Delete</button>
            </td>
        </tr>
    </tbody>
</table>

我所有的方法都很好用。当我想在我的ts文件中实现错误时,在deleteData方法中我遇到了问题。下面的代码是我的ts文件中的deleteData:

deleteData(item) {
       this.service.deletePost(item.id)
       .subscribe(
        response => {
        let index = this.data.indexOf(item);
        this.data.splice(index, 1);
        });    
}

我也使用service来调用我的删除服务:

  deletePost(id){
    return this.http.delete(this.url+'/'+id);
  }

我的问题:

如您所知,subscribe方法的第二个参数是错误,我想检查404在我的表中未找到错误。我有这样的代码:

deleteData(item) {
    this.service.deletePost(345)
      .subscribe(
        response => {
        let index = this.data.indexOf(item);
        this.data.splice(index, 1);

      },
       (error:Response) => {
         console.log(error)
         if(error.status == 404)
         {
           alert('404');
         }
         else{
          alert('unexpected is occered!');
          console.log(error);
         }

      });
}

在我的虚假API中,我只有100个项目,当我输入无效的ID(例如345)时,最后的ID是100,我应该找不到错误并进行处理。但是很遗憾,它没有发生,因此该项目已删除。我的代码有什么问题? 非常感谢

1 个答案:

答案 0 :(得分:0)

JSONPlaceholder是伪造的后端API服务器。它实际上不会从其服务器中删除任何内容。

因此,根据他们在Github上的文档,如果您尝试从服务器删除某些内容,它将始终返回200作为响应。

这是屏幕截图

enter image description here

希望这会有所帮助!