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


TypeScript Http.delete方法代碼示例

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


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

示例1: delete

 delete(login: string): Observable<Response> {
     return this.http.delete(`api/users/${login}`);
 }
開發者ID:JimSpriggs,項目名稱:sourdough,代碼行數:3,代碼來源:user.service.ts

示例2: cancelAllRequestsDispatch

 cancelAllRequestsDispatch(studentID) {
   return this.http.delete('/api/instantsessions/' + studentID)
     .subscribe(() => this.syncStudentRequestsDispatch(studentID));
 }
開發者ID:microwave-taco,項目名稱:taco-tuts,代碼行數:4,代碼來源:session-request.actions.ts

示例3: deleteCategory

 deleteCategory(category: Category) {
   return this.http.delete(`${BASE_URL}${category.id}`)
     .map(res => res.json())
     .toPromise();
 }
開發者ID:shepitko,項目名稱:home-accountant-ng2,代碼行數:5,代碼來源:category.service.ts

示例4: delete

 delete(id: number) {
     return this.http.delete('/api/users/' + id, this.jwt()).map((response: Response) => response.json());
 }
開發者ID:NurlashKO,項目名稱:Labs,代碼行數:3,代碼來源:user.service.ts

示例5: deleteData

 deleteData(id) {
     return this._http.delete('http://jsonplaceholder.typicode.com/posts/1')
         .toPromise()
         .then(response => response.json())
         .catch(this.handleError);
 }
開發者ID:crisipix,項目名稱:Angular2WebpackBasicTemplate,代碼行數:6,代碼來源:httpcall.service.ts

示例6: deleteLaboratory

 deleteLaboratory(id: number){
     return this.http.delete(`/api/laboratory/${id}`).map(res=>res.json());
 }
開發者ID:ProjectAton,項目名稱:AtonLab,代碼行數:3,代碼來源:ssh-order.service.ts

示例7: removeQueueElement

 removeQueueElement(element: any) {
   this.http.delete(`api/subject/${this.subject.code}/queue/${element._id}`, {
      headers: authHeaders()
    }).subscribe();
 }
開發者ID:Angularne,項目名稱:EduQ,代碼行數:5,代碼來源:queue.service.ts

示例8: deleteForm

 deleteForm(isProd: boolean, form: TicketForm): Observable<any> {
   return this.http.delete(`${this.base(isProd)}/ticket_forms/${form.id}.json`, this.options());
 }
開發者ID:clarkmalmgren,項目名稱:zendesk-sandbox-copy,代碼行數:3,代碼來源:zendesk.ts

示例9: deleteScanResultById

 deleteScanResultById(id: String) : Observable<any> {
   return this.http.delete(`/api/scanResults/${id}`)
   .map(mapToJSON);
 }
開發者ID:enrifransch,項目名稱:matrix-catcher,代碼行數:4,代碼來源:scan.service.ts

示例10: deleteTodo

 deleteTodo(id) {
     return this._http.delete('/api/v1/todo/' + id);
 }
開發者ID:loicbrigardis,項目名稱:angular2-MEAN,代碼行數:3,代碼來源:todo.service.ts


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