如何读取拦截器中的配置参数?
How to read the config parameter inside a interceptor?
有没有办法在拦截器中查询对象配置的值?我想在每个请求之前和之后查看配置值。
在下面的代码中,如何在各自的情况下打印配置和响应对象的整个结构?
$provide.factory('myHttpInterceptor', function() {
return {
// optional method
'request': function(config) {
// do something on success
return config;
}
'response': function(response) {
// do something on success
return response;
}
};
});
您可以简单地打印配置和响应对象:
console.log("config : "+ angular.toJson(config));
console.log("response : "+ angular.toJson(response));
有没有办法在拦截器中查询对象配置的值?我想在每个请求之前和之后查看配置值。
在下面的代码中,如何在各自的情况下打印配置和响应对象的整个结构?
$provide.factory('myHttpInterceptor', function() {
return {
// optional method
'request': function(config) {
// do something on success
return config;
}
'response': function(response) {
// do something on success
return response;
}
};
});
您可以简单地打印配置和响应对象:
console.log("config : "+ angular.toJson(config));
console.log("response : "+ angular.toJson(response));