是否存在一种在拦截器中查询对象配置值的方法?我想在每个请求之前和之后查看配置值。
在下面的代码中,如何在各自的情况下打印配置和响应对象的整个结构?
$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;
}
};
});
答案 0 :(得分:1)
您可以使用以下命令打印配置和响应对象:
console.log("config : "+ angular.toJson(config));
console.log("response : "+ angular.toJson(response));