AngularTS
    Preparing search index...

    Interface HttpService

    Runtime surface of the $http service and its shorthand request methods.

    interface HttpService {
        defaults: HttpProviderDefaults;
        pendingRequests: RequestConfig[];
        delete<T>(url: string, config?: RequestShortcutConfig): HttpPromise<T>;
        get<T>(url: string, config?: RequestShortcutConfig): HttpPromise<T>;
        head<T>(url: string, config?: RequestShortcutConfig): HttpPromise<T>;
        patch<T>(
            url: string,
            data: any,
            config?: RequestShortcutConfig,
        ): HttpPromise<T>;
        post<T>(
            url: string,
            data: any,
            config?: RequestShortcutConfig,
        ): HttpPromise<T>;
        put<T>(
            url: string,
            data: any,
            config?: RequestShortcutConfig,
        ): HttpPromise<T>;
        <T>(config: RequestConfig): HttpPromise<T>;
    }
    Index

    Properties

    pendingRequests: RequestConfig[]

    Methods

    post