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吗?