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


TypeScript AxiosInstance.delete方法代碼示例

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


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

示例1: delete

    public delete(): AxiosPromise<Message> {
        let params = {
            method: "DELETE",
        };

        return this.httpClient.delete(this.url, params);
    }
開發者ID:apioo,項目名稱:psx-api,代碼行數:7,代碼來源:typescript.ts

示例2: switch

  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();
      });
    });
  }
開發者ID:zwvista,項目名稱:SampleMisc,代碼行數:32,代碼來源:rxios.ts

示例3: delete

  public async delete(spaceId: string) {
    this.log.debug(`deleting space: ${spaceId}`);
    const { data, status, statusText } = await this.axios.delete(`/api/spaces/space/${spaceId}`);

    if (status !== 204) {
      throw new Error(
        `Expected status code of 204, received ${status} ${statusText}: ${util.inspect(data)}`
      );
    }
    this.log.debug(`deleted space: ${spaceId}`);
  }
開發者ID:,項目名稱:,代碼行數:11,代碼來源:

示例4:

 public delete<T>(url: string, params?: any): Promise<T> {
   return this.instance.delete(url, { params }).then(res => res.data);
 }
開發者ID:SaKu2110,項目名稱:Alexa_LINE_Bot,代碼行數:3,代碼來源:http.ts

示例5:

 delete<TResponse>(url: string, config?: AxiosRequestConfig): AxiosPromise<TResponse> {
   return this._axios.delete(url, config);
 }
開發者ID:JiarongGu,項目名稱:ReactCoreTemplate,代碼行數:3,代碼來源:HttpClient.ts


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