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


TypeScript Http.patch方法代碼示例

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


在下文中一共展示了Http.patch方法的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:iloveyo123u1,項目名稱:ng2-resource,代碼行數:34,代碼來源:index.ts

示例2: follow

 follow(link: XLink) {
     console.log(link);
     if (link.method == "PATCH") {
         this.http.patch(link.href, "")
             .subscribe(resp => console.log(resp));
     } else if (link.method == "DELETE")
         this.http.delete(link.href)
             .subscribe(resp => console.log(resp));
 }
開發者ID:TaaviGilden,項目名稱:testExam,代碼行數:9,代碼來源:phrs-listing.component.ts

示例3: changePassword

    changePassword(form) {
        
        let credentials = {
            old_password: form.value.old_password ? form.value.old_password : "",
            new_password: form.value.new_password ? form.value.new_password : "",
            confirm_new_password: form.value.confirm_new_password ? form.value.confirm_new_password : ""
        };

        let headers = new Headers();
        headers.append('Content-Type', 'application/json');

        return this._http.patch('/password', JSON.stringify(credentials), {
            headers: headers
        }).map(res => res.json());

    }
開發者ID:michaelsdennis4,項目名稱:my_project_manager,代碼行數:16,代碼來源:profile.service.ts

示例4: updateProfile

    updateProfile(form) {

        let credentials = {
            email: form.value.email,
            first_name: form.value.first_name,
            last_name: form.value.last_name
        };
        
        let headers = new Headers();
        headers.append('Content-Type', 'application/json');

        return this._http.patch('/users', JSON.stringify(credentials), {
            headers: headers
        }).map(res => res.json());

    }
開發者ID:michaelsdennis4,項目名稱:my_project_manager,代碼行數:16,代碼來源:profile.service.ts

示例5: update

    /**update a question*/
    public update(entity:T, onComplete?:() => void) {
        var headers:Headers = SecurityUtils.tokenHeaders();
        headers.append('Content-Type', 'application/json');

        this.http.patch(BaseService.getServerUrl() + this.getUrl()+"/"+this.getId(entity), JSON.stringify(entity), {
                headers: this.getSecurityHeaders()
            })
            .map(res => res.json())
            .subscribe(
                data => console.log('data = ' + data),
                err => console.log(err),
                () => {
                    console.log('Patch complete');
                    if (onComplete) {
                        onComplete();
                    };
                }
            );
        console.log('Question saved');
    }
開發者ID:cegagnevin,項目名稱:sido,代碼行數:21,代碼來源:BaseService.ts

示例6: patch

	patch(url: string, body: string, options?: RequestOptionsArgs): Observable<Response>
	{
		url = this.getApiRoot() + url;
		return this.chainLoader(this.http.patch(url, body, options));
	}
開發者ID:nhurman,項目名稱:Lorre,代碼行數:5,代碼來源:api.ts

示例7: patch

 patch(url: string, body: string, options?: RequestOptionsArgs): Observable<Response> {
     url = this.buildUrl(url);
     options = this.prepareOptions(options);
     return this._http.patch(url, body, options);
 }
開發者ID:artiso-solutions,項目名稱:vokabelchef-web,代碼行數:5,代碼來源:authenticatedHttp.ts

示例8: like

 like(item) {
   let body = JSON.stringify({ likes : item.likes });
   let headers = new Headers({'Content-Type' : 'application/json'});
   let options = new RequestOptions({headers : headers});
   return this.http.patch(itemsURL + item.id, body, options).map(res => res.json()).catch(this.handleError);
 }
開發者ID:dicastro,項目名稱:ionic2-tutorial,代碼行數:6,代碼來源:item-service.ts

示例9: patch

 patch(url:string, body:string, options?:RequestOptionsArgs):Observable<Response> {
   return this.http.patch(url, body, mergeAuthToken(options));
 }
開發者ID:hollannikas,項目名稱:ssoidh-angular2,代碼行數:3,代碼來源:http-client.ts

示例10: update

 public update(invoice:Invoice):Observable<Response> {
     return this.http.patch('/api/invoice/'+invoice.id, JSON.stringify(invoice));
 }
開發者ID:jakari,項目名稱:invoicing,代碼行數:3,代碼來源:invoice.service.ts


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