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