本文整理匯總了TypeScript中axios.AxiosInstance.patch方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript AxiosInstance.patch方法的具體用法?TypeScript AxiosInstance.patch怎麽用?TypeScript AxiosInstance.patch使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類axios.AxiosInstance
的用法示例。
在下文中一共展示了AxiosInstance.patch方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: patch
public patch(data: Item): AxiosPromise<Message> {
let params = {
method: "PATCH",
};
return this.httpClient.patch<Message>(this.url, data, params);
}
示例2: switch
private _makeRequest<T>(method: string, url: string, queryParams?: object, body?: object) {
let request: AxiosPromise<T>;
switch (method) {
case 'GET':
request = this._httpClient.get<T>(url, {params: queryParams});
break;
case 'POST':
request = this._httpClient.post<T>(url, body, {params: queryParams});
break;
case 'PUT':
request = this._httpClient.put<T>(url, body, {params: queryParams});
break;
case 'PATCH':
request = this._httpClient.patch<T>(url, body, {params: queryParams});
break;
case 'DELETE':
request = this._httpClient.delete(url, {params: queryParams});
break;
default:
throw new Error('Method not supported');
}
return new Observable<T>(subscriber => {
request.then(response => {
subscriber.next(response.data);
subscriber.complete();
}).catch((err: Error) => {
subscriber.error(err);
subscriber.complete();
});
});
}
示例3:
patch<TRequest, TResponse>(url: string, data?: TRequest, config?: AxiosRequestConfig): AxiosPromise<TResponse> {
return this._axios.patch(url, data, config);
}