在我的测试应用程序中,我调用一个函数来查看当前记录的用户。这最终可能会导致" 401(未授权)",这在这种情况下是正常行为。但是角度会将错误堆栈打印到日志中:
js代码
$http({method: 'GET', url: 'http://localhost:9000/currentUser'}).
success(function(data, status, headers, config) {
$scope.currentUser = data.user
}).
error(function(data, status, headers, config) {
$scope.currentUser = "Anonymous"
});
堆栈跟踪
GET http://localhost:9000/rest/user 401 (Unauthorized)
$get.id angular.min.js:96
...
如何在此方法调用中禁用打印堆栈跟踪?