當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript http.Http類代碼示例

本文整理匯總了TypeScript中angular2/http.Http的典型用法代碼示例。如果您正苦於以下問題:TypeScript Http類的具體用法?TypeScript Http怎麽用?TypeScript Http使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Http類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1:

	getPlanets(): Observable<Planet[]> {
		return this.http.get('http://swapi.co/api/planets/')
			.map(this.extractData)
			.catch(this.handleError)
	}
開發者ID:mell0kat,項目名稱:YBApp,代碼行數:5,代碼來源:planet.service.ts

示例2:

	getComentariosEvento(id:number){
		return this.http.get(URL+id)
	      .map(response => response.json())
	      .catch(error => this.handleError(error));
	}
開發者ID:a-mancera,項目名稱:practicaDAW,代碼行數:5,代碼來源:comentario.service.ts

示例3: getBooks

 getBooks(): Observable<any> {
     return this.http.get(this.baseUrl).map(response => response.json());
 }
開發者ID:ckatzorke,項目名稱:ng2-workshop,代碼行數:3,代碼來源:book-data.ts

示例4:

 get_req(url: string, options?: Object) : any {
     var url = this.query(url, options);
     return this.http.get(url)
       .map((res: Response) => res.json());
 }
開發者ID:xenoxaos,項目名稱:CloudShack,代碼行數:5,代碼來源:contact.service.ts

示例5: insert

 insert(doc) : any {
     return this.http.post("/contacts", JSON.stringify(doc))
         .map((res: Response) => res.json());
 }
開發者ID:xenoxaos,項目名稱:CloudShack,代碼行數:4,代碼來源:contact.service.ts

示例6:

	GetMatches()
	{
		return this.http.get('/rest/match');
	}
開發者ID:nhurman,項目名稱:Lorre,代碼行數:4,代碼來源:service.ts

示例7: getResume

 getResume(){
     return this._http.get("http://api.steve-botello.com/resume").map(r => r.json())
 }
開發者ID:xsteviex,項目名稱:Profile-FrontEnd,代碼行數:3,代碼來源:resume.service.ts

示例8: updateItem

 updateItem(item:Item) {
     this.http.put(`${BASE_URL}${item.id}`, JSON.stringify(item), HEADER)
         .subscribe(action => this.store.dispatch({type: 'UPDATE_ITEM', payload: item}));
 }
開發者ID:szerhusenBC,項目名稱:ng2-ngrx-inventorydemo,代碼行數:4,代碼來源:items.ts

示例9: deleteItem

 deleteItem(item:Item) {
     this.http.delete(`${BASE_URL}${item.id}`)
         .subscribe(action => this.store.dispatch({type: 'DELETE_ITEM', payload: item}));
 }
開發者ID:szerhusenBC,項目名稱:ng2-ngrx-inventorydemo,代碼行數:4,代碼來源:items.ts

示例10: loadAllItems

 loadAllItems() {
     this.http.get(BASE_URL)
         .map(res => res.json())
         .map(payload => ({type: 'ADD_ITEMS', payload}))
         .subscribe(action => this.store.dispatch(action));
 }
開發者ID:szerhusenBC,項目名稱:ng2-ngrx-inventorydemo,代碼行數:6,代碼來源:items.ts


注:本文中的angular2/http.Http類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。