AngularTS
    Preparing search index...

    Interface HttpProviderDefaults

    Default request settings exposed through $httpProvider.defaults.

    Not every RequestShortcutConfig field is supported here; this shape only includes the fields that the runtime reads from provider-level defaults.

    https://docs.angularjs.org/api/ng/service/$http#defaults https://docs.angularjs.org/api/ng/service/$http#usage https://docs.angularjs.org/api/ng/provider/$httpProvider The properties section

    interface HttpProviderDefaults {
        cache?: any;
        headers?: HttpRequestConfigHeaders;
        paramSerializer?: string | ((obj: any) => string);
        transformRequest?: HttpRequestTransformer | HttpRequestTransformer[];
        transformResponse?: HttpResponseTransformer | HttpResponseTransformer[];
        withCredentials?: boolean;
        xsrfCookieName?: string;
        xsrfHeaderName?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cache?: any
    paramSerializer?: string | ((obj: any) => string)
    withCredentials?: boolean
    xsrfCookieName?: string
    xsrfHeaderName?: string