2
Javascript代碼...
commonApp = angular.module('commonApp')
.config(function($httpProvider){
$httpProvider.interceptors.push('myHttpInterceptor');
})
.factory('myHttpInterceptor', function($q, $window){
return {
request: function(config){
console.log('Request started'); // LOG AT REQUEST START
return config || $q.when(config);
}
};
});
我認爲,該消息應該在XHR請求開始被記錄。 但我看到沒有xhr請求的日誌。
我誤解的API?
Plunkr顯示問題http://plnkr.co/edit/Ny3jo9?p=preview –