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


TypeScript Http.head方法代碼示例

本文整理匯總了TypeScript中@angular/http.Http.head方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Http.head方法的具體用法?TypeScript Http.head怎麽用?TypeScript Http.head使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@angular/http.Http的用法示例。


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

示例1: createRequest

 private createRequest(type: string,data ?: Object) : Observable<any> {
   let _url : string = this.buildUrl(data);
   let _request : Observable<any>
   let stringParam : string = '';
   let _jsonBuild : any = {}
   if(_url.split('?')[1] && _url.split('?')[1].length) {
     (_url.split('?')[1].split('&')).forEach( _paramPart => {
       _jsonBuild[_paramPart.split('=')[0]] = _paramPart.split('=')[1];
     });
     stringParam = JSON.stringify(_jsonBuild);
   }
   switch (type) {
     case "post":
       _request = this._http.post(_url.split('?')[0], stringParam);
       break;
     case "patch":
       _request = this._http.patch(_url.split('?')[0], stringParam);
       break;
     case "put":
       _request = this._http.put(_url.split('?')[0], stringParam);
       break;
     case "delete":
       _request = this._http.delete(_url);
       break;
     case "head":
       _request = this._http.head(_url);
       break;
     default:
       _request = this._http.get(_url);
       break;
   }
   this._request = _request.map((response: Response) => response.json());
   return this._request;
 }
開發者ID:nino-c,項目名稱:ng2-resource,代碼行數:34,代碼來源:index.ts

示例2: head

 public head(url: string, paramMap?: any): Observable<Response> {
   return this.http.head(url, new RequestOptions({
     search: HttpService.buildURLSearchParams(paramMap),
     headers: new Headers({
       'token': this.globalData.token
     })
   }));
 }
開發者ID:srayaa,項目名稱:ionic3_angular4_JD,代碼行數:8,代碼來源:HttpService.ts

示例3: head

	head(endpoint: string, options?: RequestOptionsArgs) : Observable<Response>{
		let url = this.getUrl(endpoint);

		return this.http.head(url, options);
	}
開發者ID:jadjoubran,項目名稱:angular2-fluent-http,代碼行數:5,代碼來源:fluent.service.ts

示例4:

 return this.getData(url, options, (url: string, options: RequestOptionsArgs) => {
     return this.http.head(url, options);
 });
開發者ID:oneuptim,項目名稱:node-amazon,代碼行數:3,代碼來源:transfer-http.ts

示例5: checkProjectExists

 checkProjectExists(projectName: string): Observable<any> {
   return this.http
              .head(`/api/projects/?project_name=${projectName}`)
              .map(response=>response.status)
              .catch(error=>Observable.throw(error));
 }
開發者ID:int32bit,項目名稱:harbor,代碼行數:6,代碼來源:project.service.ts

示例6: head

 head(url: string, options?: RequestOptionsArgs): Observable<Response> {
   return this.http.head(url, this.attachAuthHeaders(options));
 }
開發者ID:madhusudhand,項目名稱:angular2-cli,代碼行數:3,代碼來源:httpclient.ts

示例7: head

 head(url: string, options?: RequestOptionsArgs): Observable<Response> {
     return this.http.head(url, this.appendHeaders(options))
         .catch((error) => {return this.handleError(error); });
 }
開發者ID:redrick-tmn,項目名稱:SimpleAngularBlogApp,代碼行數:4,代碼來源:auth-http.service.ts

示例8: httpHead

 httpHead(url: string, options = {}) {
   return this.http.head(this.getFullUrl(url), options);
 }
開發者ID:alpineio,項目名稱:wp-api-angular,代碼行數:3,代碼來源:Parent.ts

示例9: head

 public head(url: string, options?: RequestOptionsArgs) {
   if (this.networkService.noConnection()) {
     this.networkService.showNetworkAlert();
   } else { return this.http.head(url, options) }
 }
開發者ID:davidkirolos,項目名稱:RolApp,代碼行數:5,代碼來源:network-service.ts

示例10: Promise

 return new Promise((resolve, reject) => {
   this.handleRequest(this.http.head(LoopbackAPI.URL(url, params)), resolve, reject);
 });
開發者ID:baijiadu,項目名稱:auktionator,代碼行數:3,代碼來源:loopback-api.ts


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