1. declare type HttpObserve = 'body' | 'response';
    2. // response 读取完整响应体
    3. // body 读取服务器端返回的数据
    1. this.http.get("https://jsonplaceholder.typicode.com/users",
    2. { observe: "body" }
    3. ).subscribe(console.log)