HttpClient

Perform HTTP requests.

执行 HTTP 请求。

class HttpClient { request(first: string | HttpRequest<any>, url?: string, options: {...}): Observable<any> delete(url: string, options: {...}): Observable<any> get(url: string, options: {...}): Observable<any> head(url: string, options: {...}): Observable<any> jsonp<T>(url: string, callbackParam: string): Observable<T> options(url: string, options: {...}): Observable<any> patch(url: string, body: any | null, options: {...}): Observable<any> post(url: string, body: any | null, options: {...}): Observable<any> put(url: string, body: any | null, options: {...}): Observable<any> }

说明

HttpClient is available as an injectable class, with methods to perform HTTP requests. Each request method has multiple signatures, and the return type varies according to which signature is called (mainly the values of observe and responseType).

HttpClient 是一个可供注入的类,具有一些用来执行 HTTP 请求的方法。 每个请求方法都有多重签名,并根据签名返回不同的数据类型(主要取决于 observeresponseType 的值)。

方法

Constructs an Observable for a particular HTTP request that, when subscribed, fires the request through the chain of registered interceptors and on to the server.

为一个特定的 HTTP 请求构造一个 Observable,当它被订阅时,就触发该请求,经过一系列已注册的拦截器的处理之后,最终发给服务器。

17 个重载形式...

Send the given HttpRequest and return a stream of HttpEvents.

发送指定的 HttpRequest 并返回一个由 HTTPEvents 组成的流。

request<R>(req: HttpRequest<any>): Observable<HttpEvent<R>>

参数

req

Type: HttpRequest.

返回值

Observable<HttpEvent<R>>


Construct a request which interprets the body as an ArrayBuffer and returns it.

构造一个请求,这个请求会把 body 解释为 ArrayBuffer ,并返回它。

request(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<ArrayBuffer>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<ArrayBuffer>: an Observable of the body as an ArrayBuffer.

一个由 ArrayBuffer 型的 body 组成的 Observable 对象。


Construct a request which interprets the body as a Blob and returns it.

构造一个请求,这个请求会把 body 解释为 Blob ,并返回它。

request(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<Blob>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<Blob>: an Observable of the body as a Blob.

一个由 Blob 型的 body 组成的 Observable 对象。


Construct a request which interprets the body as text and returns it.

构造一个请求,这个请求会把 body 解释为文本,并返回它。

request(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<string>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<string>: an Observable of the body as a string.

一个由 string 型的 body 组成的 Observable 对象。


Construct a request which interprets the body as an ArrayBuffer and returns the full event stream.

构造一个请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的事件流。

request(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; params?: HttpParams | { [param: string]: string | string[]; }; observe: 'events'; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpEvent<ArrayBuffer>>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; params?: HttpParams | { [param: string]: string | string[]; }; observe: 'events'; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<ArrayBuffer>>: an Observable of all HttpEvents for the request, with a body type of ArrayBuffer.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 ArrayBuffer 型的。


Construct a request which interprets the body as an Blob and returns the full event stream.

构造一个请求,这个请求会把 body 解释为 Blob ,并返回完整的事件流。

request(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpEvent<Blob>>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Blob>>: an Observable of all HttpEvents for the request, with a body type of Blob.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Blob 型的。


Construct a request which interprets the body as text and returns the full event stream.

构造一个请求,这个请求会把 body 解释为文本,并返回完整的事件流。

request(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpEvent<string>>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<string>>: an Observable of all HttpEvents for the request, with a body type of string.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 string 型的。


Construct a request which interprets the body as JSON and returns the full event stream.

构造一个请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

request(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; reportProgress?: boolean; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<any>>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; reportProgress?: boolean; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<any>>: an Observable of all HttpEvents for the request, with a body type of Object.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Object 型的。


Construct a request which interprets the body as JSON and returns the full event stream.

构造一个请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

request<R>(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; reportProgress?: boolean; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<R>>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; reportProgress?: boolean; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<R>>: an Observable of all HttpEvents for the request, with a body type of R.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 R 型的。


Construct a request which interprets the body as an ArrayBuffer and returns the full response.

构造一个请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的响应体。

request(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpResponse<ArrayBuffer>>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<ArrayBuffer>>: an Observable of the HttpResponse for the request, with a body type of ArrayBuffer.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 ArrayBuffer 型的。


Construct a request which interprets the body as a Blob and returns the full response.

构造一个请求,这个请求会把 body 解释为 Blob ,并返回完整的响应体。

request(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpResponse<Blob>>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Blob>>: an Observable of the HttpResponse for the request, with a body type of Blob.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Blob 型的。


Construct a request which interprets the body as text and returns the full response.

构造一个请求,这个请求会把 body 解释为文本,并返回完整的响应体。

request(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpResponse<string>>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<string>>: an Observable of the HttpResponse for the request, with a body type of string.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 string 型的。


Construct a request which interprets the body as JSON and returns the full response.

构造一个请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

request(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; reportProgress?: boolean; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<Object>>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; reportProgress?: boolean; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Object>>: an Observable of the HttpResponse for the request, with a body type of Object.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Object 型的。


Construct a request which interprets the body as JSON and returns the full response.

构造一个请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

request<R>(method: string, url: string, options: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; reportProgress?: boolean; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<R>>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; reportProgress?: boolean; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<R>>: an Observable of the HttpResponse for the request, with a body type of R.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 R 型的。


Construct a request which interprets the body as JSON and returns it.

构造一个请求,这个请求会把 body 解释为 JSON ,并返回它。

request(method: string, url: string, options?: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: 'json'; reportProgress?: boolean; withCredentials?: boolean; }): Observable<Object>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: 'json'; reportProgress?: boolean; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<Object>: an Observable of the HttpResponse for the request, with a body type of Object.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Object 型的。


Construct a request which interprets the body as JSON and returns it.

构造一个请求,这个请求会把 body 解释为 JSON ,并返回它。

request<R>(method: string, url: string, options?: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: 'json'; reportProgress?: boolean; withCredentials?: boolean; }): Observable<R>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: 'json'; reportProgress?: boolean; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<R>: an Observable of the HttpResponse for the request, with a body type of R.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 R 型的。


Construct a request in a manner where response type and requested Observable are not known statically.

以某种方式构造请求,其响应类型和所请求的 Observable 都是无法静态获知的。

request(method: string, url: string, options?: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; params?: HttpParams | { [param: string]: string | string[]; }; observe?: HttpObserve; reportProgress?: boolean; responseType?: 'arraybuffer' | 'blob' | 'json' | 'text'; withCredentials?: boolean; }): Observable<any>

参数

method

Type: string.

url

Type: string.

options

Type: { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; params?: HttpParams | { [param: string]: string | string[]; }; observe?: HttpObserve; reportProgress?: boolean; responseType?: 'arraybuffer' | 'blob' | 'json' | 'text'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<any>: an Observable of whatever was requested, typed to any.

所请求的任意 Observable,其类型是 any

This method can be called in one of two ways. Either an HttpRequest instance can be passed directly as the only parameter, or a method can be passed as the first parameter, a string URL as the second, and an options hash as the third.

该方法有两种调用方式。或者直接把一个 HttpRequest 实例作为唯一的参数传进去,或者第一个参数传入 method,第二个参数传入 URL,第三个参数传入表示配置项的哈希对象。

If a HttpRequest object is passed directly, an Observable of the raw HttpEvent stream will be returned.

如果直接传入 HttpRequest 对象,它就会返回一个原始 HttpEvent 组成的 Observable 流。

If a request is instead built by providing a URL, the options object determines the return type of request(). In addition to configuring request parameters such as the outgoing headers and/or the body, the options hash specifies two key pieces of information about the request: the responseType and what to observe.

如果是通过提供 URL 的方式构建的,配置项将决定 request() 的返回值类型。 除了配置请求头或 body 等请求参数之外,该配置项的哈希对象中还可以指定两个和请求本身有关的键:responseType 以及想要 observe 什么。

The responseType value determines how a successful response body will be parsed. If responseType is the default json, a type interface for the resulting object may be passed as a type parameter to request().

responseType 的值决定要如何解析响应体。如果 responseTypejson(默认值),则还可以为 request 传入一个用来表示结果类型的类型接口。

The observe value determines the return type of request(), based on what the consumer is interested in observing. A value of events will return an Observable<HttpEvent> representing the raw HttpEvent stream, including progress events by default. A value of response will return an Observable<HttpResponse<T>> where the T parameter of HttpResponse depends on the responseType and any optionally provided type parameter. A value of body will return an Observable<T> with the same T body type.

observe 的值决定 request() 的返回值类型,这取决于消费方在订阅时对哪些东西感兴趣。 当它的值是 events 时,它将返回一个 Observable<HttpEvent>,以表示原始的 HTTPEvent 流,默认还包括网络通讯进度事件。 当它的值是 response 时,它将返回一个 Observable<HttpResponse<T>>HttpResponseT 参数 取决于 responseType 以及可选提供的类型参数。 当它的值是 body 时,它将返回一个 body 类型为 TObservable<T> 对象。

Constructs an Observable which, when subscribed, will cause the configured DELETE request to be executed on the server. See the individual overloads for details of delete()'s return type based on the provided options.

构造一个 Observable,当订阅它时,将导致服务器执行一个配置好的 DELETE 请求。 关于 delete() 返回类型的详细信息取决于所提供的选项,参见它的各个重载形式。

15 个重载形式...

Construct a DELETE request which interprets the body as an ArrayBuffer and returns it.

构造一个 DELETE 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回它。

delete(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<ArrayBuffer>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<ArrayBuffer>: an Observable of the body as an ArrayBuffer.

一个由 ArrayBuffer 型的 body 组成的 Observable 对象。


Construct a DELETE request which interprets the body as a Blob and returns it.

构造一个 DELETE 请求,这个请求会把 body 解释为 Blob ,并返回它。

delete(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<Blob>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<Blob>: an Observable of the body as a Blob.

一个由 Blob 型的 body 组成的 Observable 对象。


Construct a DELETE request which interprets the body as text and returns it.

构造一个 DELETE 请求,这个请求会把 body 解释为文本,并返回它。

delete(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<string>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<string>: an Observable of the body as a string.

一个由 string 型的 body 组成的 Observable 对象。


Construct a DELETE request which interprets the body as an ArrayBuffer and returns the full event stream.

构造一个 DELETE 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的事件流。

delete(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpEvent<ArrayBuffer>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<ArrayBuffer>>: an Observable of all HttpEvents for the request, with a body type of ArrayBuffer.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 ArrayBuffer 型的。


Construct a DELETE request which interprets the body as a Blob and returns the full event stream.

构造一个 DELETE 请求,这个请求会把 body 解释为 Blob ,并返回完整的事件流。

delete(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpEvent<Blob>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Blob>>: an Observable of all HttpEvents for the request, with a body type of Blob.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Blob 型的。


Construct a DELETE request which interprets the body as text and returns the full event stream.

构造一个 DELETE 请求,这个请求会把 body 解释为文本,并返回完整的事件流。

delete(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpEvent<string>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<string>>: an Observable of all HttpEvents for the request, with a body type of string.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 string 型的。


Construct a DELETE request which interprets the body as JSON and returns the full event stream.

构造一个 DELETE 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

delete(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<Object>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Object>>: an Observable of all HttpEvents for the request, with a body type of Object.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Object 型的。


Construct a DELETE request which interprets the body as JSON and returns the full event stream.

构造一个 DELETE 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

delete<T>(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<T>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<T>>: an Observable of all HttpEvents for the request, with a body type of T.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 T 型的。


Construct a DELETE request which interprets the body as an ArrayBuffer and returns the full response.

构造一个 DELETE 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的响应体。

delete(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpResponse<ArrayBuffer>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<ArrayBuffer>>: an Observable of the HttpResponse for the request, with a body type of ArrayBuffer.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 ArrayBuffer 型的。


Construct a DELETE request which interprets the body as a Blob and returns the full response.

构造一个 DELETE 请求,这个请求会把 body 解释为 Blob ,并返回完整的响应体。

delete(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpResponse<Blob>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Blob>>: an Observable of the HttpResponse for the request, with a body type of Blob.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Blob 型的。


Construct a DELETE request which interprets the body as text and returns the full response.

构造一个 DELETE 请求,这个请求会把 body 解释为文本,并返回完整的响应体。

delete(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpResponse<string>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<string>>: an Observable of the HttpResponse for the request, with a body type of string.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 string 型的。


Construct a DELETE request which interprets the body as JSON and returns the full response.

构造一个 DELETE 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

delete(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<Object>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Object>>: an Observable of the HttpResponse for the request, with a body type of Object.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Object 型的。


Construct a DELETE request which interprets the body as JSON and returns the full response.

构造一个 DELETE 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

delete<T>(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<T>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<T>>: an Observable of the HttpResponse for the request, with a body type of T.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 T 型的。


Construct a DELETE request which interprets the body as JSON and returns it.

构造一个 DELETE 请求,这个请求会把 body 解释为 JSON ,并返回它。

delete(url: string, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<Object>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<Object>: an Observable of the body as an Object.

一个由 Object 型的 body 组成的 Observable 对象。


Construct a DELETE request which interprets the body as JSON and returns it.

构造一个 DELETE 请求,这个请求会把 body 解释为 JSON ,并返回它。

delete<T>(url: string, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<T>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<T>: an Observable of the body as type T.

一个由 T 型的 body 组成的 Observable 对象。

Constructs an Observable which, when subscribed, will cause the configured GET request to be executed on the server. See the individual overloads for details of get()'s return type based on the provided options.

构造一个 Observable,当订阅它时,将导致服务器执行一个配置好的 GET 请求。 关于 get() 返回类型的详细信息取决于所提供的选项,参见它的各个重载形式。

15 个重载形式...

Construct a GET request which interprets the body as an ArrayBuffer and returns it.

构造一个 GET 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回它。

get(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<ArrayBuffer>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<ArrayBuffer>: an Observable of the body as an ArrayBuffer.

一个由 ArrayBuffer 型的 body 组成的 Observable 对象。


Construct a GET request which interprets the body as a Blob and returns it.

构造一个 GET 请求,这个请求会把 body 解释为 Blob ,并返回它。

get(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<Blob>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<Blob>: an Observable of the body as a Blob.

一个由 Blob 型的 body 组成的 Observable 对象。


Construct a GET request which interprets the body as text and returns it.

构造一个 GET 请求,这个请求会把 body 解释为文本,并返回它。

get(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<string>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<string>: an Observable of the body as a string.

一个由 string 型的 body 组成的 Observable 对象。


Construct a GET request which interprets the body as an ArrayBuffer and returns the full event stream.

构造一个 GET 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的事件流。

get(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpEvent<ArrayBuffer>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<ArrayBuffer>>: an Observable of all HttpEvents for the request, with a body type of ArrayBuffer.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 ArrayBuffer 型的。


Construct a GET request which interprets the body as a Blob and returns the full event stream.

构造一个 GET 请求,这个请求会把 body 解释为 Blob ,并返回完整的事件流。

get(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpEvent<Blob>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Blob>>: an Observable of all HttpEvents for the request, with a body type of Blob.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Blob 型的。


Construct a GET request which interprets the body as text and returns the full event stream.

构造一个 GET 请求,这个请求会把 body 解释为文本,并返回完整的事件流。

get(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpEvent<string>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<string>>: an Observable of all HttpEvents for the request, with a body type of string.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 string 型的。


Construct a GET request which interprets the body as JSON and returns the full event stream.

构造一个 GET 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

get(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<Object>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Object>>: an Observable of all HttpEvents for the request, with a body type of Object.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Object 型的。


Construct a GET request which interprets the body as JSON and returns the full event stream.

构造一个 GET 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

get<T>(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<T>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<T>>: an Observable of all HttpEvents for the request, with a body type of T.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 T 型的。


Construct a GET request which interprets the body as an ArrayBuffer and returns the full response.

构造一个 GET 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的响应体。

get(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpResponse<ArrayBuffer>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<ArrayBuffer>>: an Observable of the HttpResponse for the request, with a body type of ArrayBuffer.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 ArrayBuffer 型的。


Construct a GET request which interprets the body as a Blob and returns the full response.

构造一个 GET 请求,这个请求会把 body 解释为 Blob ,并返回完整的响应体。

get(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpResponse<Blob>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Blob>>: an Observable of the HttpResponse for the request, with a body type of Blob.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Blob 型的。


Construct a GET request which interprets the body as text and returns the full response.

构造一个 GET 请求,这个请求会把 body 解释为文本,并返回完整的响应体。

get(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpResponse<string>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<string>>: an Observable of the HttpResponse for the request, with a body type of string.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 string 型的。


Construct a GET request which interprets the body as JSON and returns the full response.

构造一个 GET 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

get(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<Object>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Object>>: an Observable of the HttpResponse for the request, with a body type of Object.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Object 型的。


Construct a GET request which interprets the body as JSON and returns the full response.

构造一个 GET 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

get<T>(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<T>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<T>>: an Observable of the HttpResponse for the request, with a body type of T.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 T 型的。


Construct a GET request which interprets the body as JSON and returns it.

构造一个 GET 请求,这个请求会把 body 解释为 JSON ,并返回它。

get(url: string, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<Object>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<Object>: an Observable of the body as an Object.

一个由 Object 型的 body 组成的 Observable 对象。


Construct a GET request which interprets the body as JSON and returns it.

构造一个 GET 请求,这个请求会把 body 解释为 JSON ,并返回它。

get<T>(url: string, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<T>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<T>: an Observable of the body as type T.

一个由 T 型的 body 组成的 Observable 对象。

Constructs an Observable which, when subscribed, will cause the configured HEAD request to be executed on the server. See the individual overloads for details of head()'s return type based on the provided options.

构造一个 Observable,当订阅它时,将导致服务器执行一个配置好的 HEAD 请求。 关于 head() 返回类型的详细信息取决于所提供的选项,参见它的各个重载形式。

15 个重载形式...

Construct a HEAD request which interprets the body as an ArrayBuffer and returns it.

构造一个 HEAD 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回它。

head(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<ArrayBuffer>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<ArrayBuffer>: an Observable of the body as an ArrayBuffer.

一个由 ArrayBuffer 型的 body 组成的 Observable 对象。


head(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<Blob>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<Blob>


Construct a HEAD request which interprets the body as text and returns it.

构造一个 HEAD 请求,这个请求会把 body 解释为文本,并返回它。

head(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<string>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<string>: an Observable of the body as a string.

一个由 string 型的 body 组成的 Observable 对象。


Construct a HEAD request which interprets the body as an ArrayBuffer and returns the full event stream.

构造一个 HEAD 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的事件流。

head(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpEvent<ArrayBuffer>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<ArrayBuffer>>: an Observable of all HttpEvents for the request, with a body type of ArrayBuffer.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 ArrayBuffer 型的。


Construct a HEAD request which interprets the body as a Blob and returns the full event stream.

构造一个 HEAD 请求,这个请求会把 body 解释为 Blob ,并返回完整的事件流。

head(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpEvent<Blob>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Blob>>: an Observable of all HttpEvents for the request, with a body type of Blob.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Blob 型的。


Construct a HEAD request which interprets the body as text and returns the full event stream.

构造一个 HEAD 请求,这个请求会把 body 解释为文本,并返回完整的事件流。

head(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpEvent<string>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<string>>: an Observable of all HttpEvents for the request, with a body type of string.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 string 型的。


Construct a HEAD request which interprets the body as JSON and returns the full event stream.

构造一个 HEAD 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

head(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<Object>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Object>>: an Observable of all HttpEvents for the request, with a body type of Object.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Object 型的。


Construct a HEAD request which interprets the body as JSON and returns the full event stream.

构造一个 HEAD 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

head<T>(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<T>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<T>>: an Observable of all HttpEvents for the request, with a body type of T.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 T 型的。


Construct a HEAD request which interprets the body as an ArrayBuffer and returns the full response.

构造一个 HEAD 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的响应体。

head(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpResponse<ArrayBuffer>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<ArrayBuffer>>: an Observable of the HttpResponse for the request, with a body type of ArrayBuffer.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 ArrayBuffer 型的。


Construct a HEAD request which interprets the body as a Blob and returns the full response.

构造一个 HEAD 请求,这个请求会把 body 解释为 Blob ,并返回完整的响应体。

head(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpResponse<Blob>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Blob>>: an Observable of the HttpResponse for the request, with a body type of Blob.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Blob 型的。


Construct a HEAD request which interprets the body as text and returns the full response.

构造一个 HEAD 请求,这个请求会把 body 解释为文本,并返回完整的响应体。

head(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpResponse<string>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<string>>: an Observable of the HttpResponse for the request, with a body type of string.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 string 型的。


Construct a HEAD request which interprets the body as JSON and returns the full response.

构造一个 HEAD 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

head(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<Object>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Object>>: an Observable of the HttpResponse for the request, with a body type of Object.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Object 型的。


Construct a HEAD request which interprets the body as JSON and returns the full response.

构造一个 HEAD 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

head<T>(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<T>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<T>>: an Observable of the HttpResponse for the request, with a body type of T.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 T 型的。


Construct a HEAD request which interprets the body as JSON and returns it.

构造一个 HEAD 请求,这个请求会把 body 解释为 JSON ,并返回它。

head(url: string, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<Object>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<Object>: an Observable of the body as an Object.

一个由 Object 型的 body 组成的 Observable 对象。


Construct a HEAD request which interprets the body as JSON and returns it.

构造一个 HEAD 请求,这个请求会把 body 解释为 JSON ,并返回它。

head<T>(url: string, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<T>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<T>: an Observable of the body as type T.

一个由 T 型的 body 组成的 Observable 对象。

Constructs an Observable which, when subscribed, will cause a request with the special method JSONP to be dispatched via the interceptor pipeline.

构造一个 Observable,订阅它将经过拦截器管道处理之后发送一个特殊的 JSONP 请求。

Construct a JSONP request for the given URL and name of the callback parameter.

使用指定的 URL 和回调函数名构造一个 JSONP 请求。

jsonp(url: string, callbackParam: string): Observable<Object>

参数

url

Type: string.

callbackParam

Type: string.

返回值

Observable<Object>: an Observable of the response object as an Object

一个 Object 型响应对象组成的 Observable 对象

Construct a JSONP request for the given URL and name of the callback parameter.

使用指定的 URL 和回调函数名构造一个 JSONP 请求。

jsonp<T>(url: string, callbackParam: string): Observable<T>

参数

url

Type: string.

callbackParam

Type: string.

返回值

Observable<T>: an Observable of the response object as type T.

一个 T 型响应对象组成的 Observable 对象

A suitable interceptor must be installed (e.g. via the HttpClientJsonpModule). If no such interceptor is reached, then the JSONP request will likely be rejected by the configured backend.

必须安装一个合适的拦截器(比如借助 HttpClientJsonpModule)。 如果没有这个拦截器,JSONP 请求就可能被后端拒绝。

Constructs an Observable which, when subscribed, will cause the configured OPTIONS request to be executed on the server. See the individual overloads for details of options()'s return type based on the provided options.

构造一个 Observable,当订阅它时,将导致服务器执行一个配置好的 OPTIONS 请求。 关于 options() 返回类型的详细信息取决于所提供的选项,参见它的各个重载形式。

15 个重载形式...

Make an OPTIONS request which interprets the body as an ArrayBuffer and returns it.

构造一个 OPTIONS 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回它。

options(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<ArrayBuffer>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<ArrayBuffer>: an Observable of the body as an ArrayBuffer.

一个由 ArrayBuffer 型的 body 组成的 Observable 对象。


Construct an OPTIONS request which interprets the body as a Blob and returns it.

构造一个 OPTIONS 请求,这个请求会把 body 解释为 Blob ,并返回它。

options(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<Blob>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<Blob>: an Observable of the body as a Blob.

一个由 Blob 型的 body 组成的 Observable 对象。


Construct an OPTIONS request which interprets the body as text and returns it.

构造一个 OPTIONS 请求,这个请求会把 body 解释为文本,并返回它。

options(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<string>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<string>: an Observable of the body as a string.

一个由 string 型的 body 组成的 Observable 对象。


Construct an OPTIONS request which interprets the body as an ArrayBuffer and returns the full event stream.

构造一个 OPTIONS 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的事件流。

options(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpEvent<ArrayBuffer>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<ArrayBuffer>>: an Observable of all HttpEvents for the request, with a body type of ArrayBuffer.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 ArrayBuffer 型的。


Construct an OPTIONS request which interprets the body as a Blob and returns the full event stream.

构造一个 OPTIONS 请求,这个请求会把 body 解释为 Blob ,并返回完整的事件流。

options(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpEvent<Blob>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Blob>>: an Observable of all HttpEvents for the request, with a body type of Blob.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Blob 型的。


Construct an OPTIONS request which interprets the body as text and returns the full event stream.

构造一个 OPTIONS 请求,这个请求会把 body 解释为文本,并返回完整的事件流。

options(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpEvent<string>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<string>>: an Observable of all HttpEvents for the request, with a body type of string.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 string 型的。


Construct an OPTIONS request which interprets the body as JSON and returns the full event stream.

构造一个 OPTIONS 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

options(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<Object>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Object>>: an Observable of all HttpEvents for the request, with a body type of Object.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Object 型的。


Construct an OPTIONS request which interprets the body as JSON and returns the full event stream.

构造一个 OPTIONS 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

options<T>(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<T>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<T>>: an Observable of all HttpEvents for the request, with a body type of T.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 T 型的。


Construct an OPTIONS request which interprets the body as an ArrayBuffer and returns the full response.

构造一个 OPTIONS 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的响应体。

options(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpResponse<ArrayBuffer>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<ArrayBuffer>>: an Observable of the HttpResponse for the request, with a body type of ArrayBuffer.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 ArrayBuffer 型的。


Construct an OPTIONS request which interprets the body as a Blob and returns the full response.

构造一个 OPTIONS 请求,这个请求会把 body 解释为 Blob ,并返回完整的响应体。

options(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpResponse<Blob>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Blob>>: an Observable of the HttpResponse for the request, with a body type of Blob.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Blob 型的。


Construct an OPTIONS request which interprets the body as text and returns the full response.

构造一个 OPTIONS 请求,这个请求会把 body 解释为文本,并返回完整的响应体。

options(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpResponse<string>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<string>>: an Observable of the HttpResponse for the request, with a body type of string.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 string 型的。


Construct an OPTIONS request which interprets the body as JSON and returns the full response.

构造一个 OPTIONS 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

options(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<Object>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Object>>: an Observable of the HttpResponse for the request, with a body type of Object.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Object 型的。


Construct an OPTIONS request which interprets the body as JSON and returns the full response.

构造一个 OPTIONS 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

options<T>(url: string, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<T>>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<T>>: an Observable of the HttpResponse for the request, with a body type of T.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 T 型的。


Construct an OPTIONS request which interprets the body as JSON and returns it.

构造一个 OPTIONS 请求,这个请求会把 body 解释为 JSON ,并返回它。

options(url: string, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<Object>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<Object>: an Observable of the body as an Object.

一个由 Object 型的 body 组成的 Observable 对象。


Construct an OPTIONS request which interprets the body as JSON and returns it.

构造一个 OPTIONS 请求,这个请求会把 body 解释为 JSON ,并返回它。

options<T>(url: string, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<T>

参数

url

Type: string.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<T>: an Observable of the body as type T.

一个由 T 型的 body 组成的 Observable 对象。

Constructs an Observable which, when subscribed, will cause the configured PATCH request to be executed on the server. See the individual overloads for details of patch()'s return type based on the provided options.

构造一个 Observable,当订阅它时,将导致服务器执行一个配置好的 PATCH 请求。 关于 patch() 返回类型的详细信息取决于所提供的选项,参见它的各个重载形式。

15 个重载形式...

Construct a PATCH request which interprets the body as an ArrayBuffer and returns it.

构造一个 PATCH 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回它。

patch(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<ArrayBuffer>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<ArrayBuffer>: an Observable of the body as an ArrayBuffer.

一个由 ArrayBuffer 型的 body 组成的 Observable 对象。


Construct a PATCH request which interprets the body as a Blob and returns it.

构造一个 PATCH 请求,这个请求会把 body 解释为 Blob ,并返回它。

patch(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<Blob>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<Blob>: an Observable of the body as a Blob.

一个由 Blob 型的 body 组成的 Observable 对象。


Construct a PATCH request which interprets the body as text and returns it.

构造一个 PATCH 请求,这个请求会把 body 解释为文本,并返回它。

patch(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<string>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<string>: an Observable of the body as a string.

一个由 string 型的 body 组成的 Observable 对象。


Construct a PATCH request which interprets the body as an ArrayBuffer and returns the full event stream.

构造一个 PATCH 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的事件流。

patch(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpEvent<ArrayBuffer>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<ArrayBuffer>>: an Observable of all HttpEvents for the request, with a body type of ArrayBuffer.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 ArrayBuffer 型的。


Construct a PATCH request which interprets the body as a Blob and returns the full event stream.

构造一个 PATCH 请求,这个请求会把 body 解释为 Blob ,并返回完整的事件流。

patch(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpEvent<Blob>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Blob>>: an Observable of all HttpEvents for the request, with a body type of Blob.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Blob 型的。


Construct a PATCH request which interprets the body as text and returns the full event stream.

构造一个 PATCH 请求,这个请求会把 body 解释为文本,并返回完整的事件流。

patch(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpEvent<string>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<string>>: an Observable of all HttpEvents for the request, with a body type of string.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 string 型的。


Construct a PATCH request which interprets the body as JSON and returns the full event stream.

构造一个 PATCH 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

patch(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<Object>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Object>>: an Observable of all HttpEvents for the request, with a body type of Object.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Object 型的。


Construct a PATCH request which interprets the body as JSON and returns the full event stream.

构造一个 PATCH 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

patch<T>(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<T>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<T>>: an Observable of all HttpEvents for the request, with a body type of T.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 T 型的。


Construct a PATCH request which interprets the body as an ArrayBuffer and returns the full response.

构造一个 PATCH 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的响应体。

patch(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpResponse<ArrayBuffer>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<ArrayBuffer>>: an Observable of the HttpResponse for the request, with a body type of ArrayBuffer.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 ArrayBuffer 型的。


Construct a PATCH request which interprets the body as a Blob and returns the full response.

构造一个 PATCH 请求,这个请求会把 body 解释为 Blob ,并返回完整的响应体。

patch(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpResponse<Blob>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Blob>>: an Observable of the HttpResponse for the request, with a body type of Blob.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Blob 型的。


Construct a PATCH request which interprets the body as text and returns the full response.

构造一个 PATCH 请求,这个请求会把 body 解释为文本,并返回完整的响应体。

patch(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpResponse<string>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<string>>: an Observable of the HttpResponse for the request, with a body type of string.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 string 型的。


Construct a PATCH request which interprets the body as JSON and returns the full response.

构造一个 PATCH 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

patch(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<Object>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Object>>: an Observable of the HttpResponse for the request, with a body type of Object.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Object 型的。


Construct a PATCH request which interprets the body as JSON and returns the full response.

构造一个 PATCH 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

patch<T>(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<T>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<T>>: an Observable of the HttpResponse for the request, with a body type of T.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 T 型的。


Construct a PATCH request which interprets the body as JSON and returns it.

构造一个 PATCH 请求,这个请求会把 body 解释为 JSON ,并返回它。

patch(url: string, body: any | null, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<Object>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<Object>: an Observable of the body as an Object.

一个由 Object 型的 body 组成的 Observable 对象。


Construct a PATCH request which interprets the body as JSON and returns it.

构造一个 PATCH 请求,这个请求会把 body 解释为 JSON ,并返回它。

patch<T>(url: string, body: any | null, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<T>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<T>: an Observable of the body as type T.

一个由 T 型的 body 组成的 Observable 对象。

Constructs an Observable which, when subscribed, will cause the configured POST request to be executed on the server. See the individual overloads for details of post()'s return type based on the provided options.

构造一个 Observable,当订阅它时,将导致服务器执行一个配置好的 POST 请求。 关于 post() 返回类型的详细信息取决于所提供的选项,参见它的各个重载形式。

15 个重载形式...

Construct a POST request which interprets the body as an ArrayBuffer and returns it.

构造一个 POST 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回它。

post(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<ArrayBuffer>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<ArrayBuffer>: an Observable of the body as an ArrayBuffer.

一个由 ArrayBuffer 型的 body 组成的 Observable 对象。


Construct a POST request which interprets the body as a Blob and returns it.

构造一个 POST 请求,这个请求会把 body 解释为 Blob ,并返回它。

post(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<Blob>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<Blob>: an Observable of the body as a Blob.

一个由 Blob 型的 body 组成的 Observable 对象。


Construct a POST request which interprets the body as text and returns it.

构造一个 POST 请求,这个请求会把 body 解释为文本,并返回它。

post(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<string>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<string>: an Observable of the body as a string.

一个由 string 型的 body 组成的 Observable 对象。


Construct a POST request which interprets the body as an ArrayBuffer and returns the full event stream.

构造一个 POST 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的事件流。

post(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpEvent<ArrayBuffer>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<ArrayBuffer>>: an Observable of all HttpEvents for the request, with a body type of ArrayBuffer.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 ArrayBuffer 型的。


Construct a POST request which interprets the body as a Blob and returns the full event stream.

构造一个 POST 请求,这个请求会把 body 解释为 Blob ,并返回完整的事件流。

post(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpEvent<Blob>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Blob>>: an Observable of all HttpEvents for the request, with a body type of Blob.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Blob 型的。


Construct a POST request which interprets the body as text and returns the full event stream.

构造一个 POST 请求,这个请求会把 body 解释为文本,并返回完整的事件流。

post(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpEvent<string>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<string>>: an Observable of all HttpEvents for the request, with a body type of string.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 string 型的。


Construct a POST request which interprets the body as JSON and returns the full event stream.

构造一个 POST 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

post(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<Object>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Object>>: an Observable of all HttpEvents for the request, with a body type of Object.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Object 型的。


Construct a POST request which interprets the body as JSON and returns the full event stream.

构造一个 POST 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

post<T>(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<T>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<T>>: an Observable of all HttpEvents for the request, with a body type of T.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 T 型的。


Construct a POST request which interprets the body as an ArrayBuffer and returns the full response.

构造一个 POST 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的响应体。

post(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpResponse<ArrayBuffer>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<ArrayBuffer>>: an Observable of the HttpResponse for the request, with a body type of ArrayBuffer.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 ArrayBuffer 型的。


Construct a POST request which interprets the body as a Blob and returns the full response.

构造一个 POST 请求,这个请求会把 body 解释为 Blob ,并返回完整的响应体。

post(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpResponse<Blob>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Blob>>: an Observable of the HttpResponse for the request, with a body type of Blob.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Blob 型的。


Construct a POST request which interprets the body as text and returns the full response.

构造一个 POST 请求,这个请求会把 body 解释为文本,并返回完整的响应体。

post(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpResponse<string>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<string>>: an Observable of the HttpResponse for the request, with a body type of string.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 string 型的。


Construct a POST request which interprets the body as JSON and returns the full response.

构造一个 POST 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

post(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<Object>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Object>>: an Observable of the HttpResponse for the request, with a body type of Object.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Object 型的。


Construct a POST request which interprets the body as JSON and returns the full response.

构造一个 POST 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

post<T>(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<T>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<T>>: an Observable of the HttpResponse for the request, with a body type of T.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 T 型的。


Construct a POST request which interprets the body as JSON and returns it.

构造一个 POST 请求,这个请求会把 body 解释为 JSON ,并返回它。

post(url: string, body: any | null, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<Object>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<Object>: an Observable of the body as an Object.

一个由 Object 型的 body 组成的 Observable 对象。


Construct a POST request which interprets the body as JSON and returns it.

构造一个 POST 请求,这个请求会把 body 解释为 JSON ,并返回它。

post<T>(url: string, body: any | null, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<T>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<T>: an Observable of the body as type T.

一个由 T 型的 body 组成的 Observable 对象。

Constructs an Observable which, when subscribed, will cause the configured PUT request to be executed on the server. See the individual overloads for details of put()'s return type based on the provided options.

构造一个 Observable,当订阅它时,将导致服务器执行一个配置好的 PUT 请求。 关于 put() 返回类型的详细信息取决于所提供的选项,参见它的各个重载形式。

15 个重载形式...

Construct a PUT request which interprets the body as an ArrayBuffer and returns it.

构造一个 PUT 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回它。

put(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<ArrayBuffer>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<ArrayBuffer>: an Observable of the body as an ArrayBuffer.

一个由 ArrayBuffer 型的 body 组成的 Observable 对象。


Construct a PUT request which interprets the body as a Blob and returns it.

构造一个 PUT 请求,这个请求会把 body 解释为 Blob ,并返回它。

put(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<Blob>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<Blob>: an Observable of the body as a Blob.

一个由 Blob 型的 body 组成的 Observable 对象。


Construct a PUT request which interprets the body as text and returns it.

构造一个 PUT 请求,这个请求会把 body 解释为文本,并返回它。

put(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<string>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<string>: an Observable of the body as a string.

一个由 string 型的 body 组成的 Observable 对象。


Construct a PUT request which interprets the body as an ArrayBuffer and returns the full event stream.

构造一个 PUT 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的事件流。

put(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpEvent<ArrayBuffer>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<ArrayBuffer>>: an Observable of all HttpEvents for the request, with a body type of ArrayBuffer.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 ArrayBuffer 型的。


Construct a PUT request which interprets the body as a Blob and returns the full event stream.

构造一个 PUT 请求,这个请求会把 body 解释为 Blob ,并返回完整的事件流。

put(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpEvent<Blob>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Blob>>: an Observable of all HttpEvents for the request, with a body type of Blob.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Blob 型的。


Construct a PUT request which interprets the body as text and returns the full event stream.

构造一个 PUT 请求,这个请求会把 body 解释为文本,并返回完整的事件流。

put(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpEvent<string>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<string>>: an Observable of all HttpEvents for the request, with a body type of string.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 string 型的。


Construct a PUT request which interprets the body as JSON and returns the full event stream.

构造一个 PUT 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

put(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<Object>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<Object>>: an Observable of all HttpEvents for the request, with a body type of Object.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 Object 型的。


Construct a PUT request which interprets the body as JSON and returns the full event stream.

构造一个 PUT 请求,这个请求会把 body 解释为 JSON ,并返回完整的事件流。

put<T>(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpEvent<T>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'events'; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpEvent<T>>: an Observable of all HttpEvents for the request, with a body type of T.

一个由该请求的所有 HttpEvents 组成的 Observable 对象,事件的 body 是 T 型的。


Construct a PUT request which interprets the body as an ArrayBuffer and returns the full response.

构造一个 PUT 请求,这个请求会把 body 解释为 ArrayBuffer ,并返回完整的响应体。

put(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }): Observable<HttpResponse<ArrayBuffer>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'arraybuffer'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<ArrayBuffer>>: an Observable of the HttpResponse for the request, with a body type of ArrayBuffer.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 ArrayBuffer 型的。


Construct a PUT request which interprets the body as a Blob and returns the full response.

构造一个 PUT 请求,这个请求会把 body 解释为 Blob ,并返回完整的响应体。

put(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }): Observable<HttpResponse<Blob>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'blob'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Blob>>: an Observable of the HttpResponse for the request, with a body type of Blob.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Blob 型的。


Construct a PUT request which interprets the body as text and returns the full response.

构造一个 PUT 请求,这个请求会把 body 解释为文本,并返回完整的响应体。

put(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }): Observable<HttpResponse<string>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType: 'text'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<string>>: an Observable of the HttpResponse for the request, with a body type of string.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 string 型的。


Construct a PUT request which interprets the body as JSON and returns the full response.

构造一个 PUT 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

put(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<Object>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<Object>>: an Observable of the HttpResponse for the request, with a body type of Object.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 Object 型的。


Construct a PUT request which interprets the body as JSON and returns the full response.

构造一个 PUT 请求,这个请求会把 body 解释为 JSON ,并返回完整的响应体。

put<T>(url: string, body: any | null, options: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<HttpResponse<T>>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe: 'response'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

返回值

Observable<HttpResponse<T>>: an Observable of the HttpResponse for the request, with a body type of T.

一个由该请求的 HttpResponse 组成的 Observable 对象,其 body 是 T 型的。


Construct a PUT request which interprets the body as JSON and returns it.

构造一个 PUT 请求,这个请求会把 body 解释为 JSON ,并返回它。

put(url: string, body: any | null, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<Object>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<Object>: an Observable of the body as an Object.

一个由 Object 型的 body 组成的 Observable 对象。


Construct a PUT request which interprets the body as JSON and returns it.

构造一个 PUT 请求,这个请求会把 body 解释为 JSON ,并返回它。

put<T>(url: string, body: any | null, options?: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): Observable<T>

参数

url

Type: string.

body

Type: any | null.

options

Type: { headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: 'body'; params?: HttpParams | { [param: string]: string | string[]; }; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }.

可选. 默认值是 undefined.

返回值

Observable<T>: an Observable of the body as type T.

一个由 T 型的 body 组成的 Observable 对象。

注解

@Injectable()