Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

Bloco de código
languagejs
titleExemplo
firstline1
linenumberstrue
collapsetrue
appHTTPInterceptors.$inject = ['$q'];
function appHTTPInterceptors($q) {

	...

    return {
        request: function (config) {
            return config || $q.when(config);
        },
        requestError: function (rejection) {
            return rejection;
        },
        response: function (response) {
            return response;
        },
        responseError: function (rejection) {
            return rejection;
        }
    };
}

// Registra a AngularJS Factory para customização do httpInterceptor padrão do AngularJS.
index.factory('appHTTPInterceptors', appHTTPInterceptors);

...