本文整理汇总了TypeScript中axios.AxiosPromise类的典型用法代码示例。如果您正苦于以下问题:TypeScript AxiosPromise类的具体用法?TypeScript AxiosPromise怎么用?TypeScript AxiosPromise使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了AxiosPromise类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: Error
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();
});
});
}
示例2:
return new Observable<T>(subscriber => {
request.then(response => {
subscriber.next(response.data);
subscriber.complete();
}).catch((err: Error) => {
subscriber.error(err);
subscriber.complete();
});
});
示例3: dispatch
(dispatch: Function) => {
dispatch({ type: Actions.OF_SEARCH_RESULTS_START, payload: undefined });
openFarmSearchQuery(searchTerm)
.then(resp => {
const images: { [key: string]: string } = {};
get(resp, "data.included", FALLBACK)
.map((item: OpenFarm.Included) => {
return { id: item.id, url: item.attributes.thumbnail_url };
})
.map((val: IdURL) => images[val.id] = val.url);
const payload = resp.data.data.map(datum => {
const crop = datum.attributes;
const id = get(datum, "relationships.pictures.data[0].id", "");
return { crop, image: (images[id] || DEFAULT_ICON) };
});
dispatch({ type: Actions.OF_SEARCH_RESULTS_OK, payload });
})
.catch(() =>
dispatch({ type: Actions.OF_SEARCH_RESULTS_NO, payload: undefined })
);
};