我试图在Angular中发出一个http请求,当我运行它时,我在控制台中获得了Unauthorized。但是如果我直接在浏览器(Chrome)中运行请求就可以了。有什么建议我可以纠正这个吗?
$scope.getStorage = function() {
$http.get('http://username:passsword@example.com/api/storageinfo').success(function(response) {
console.log(response);
}).error(function(error){
console.log(error);
});
};
$scope.getStorage();
-
GET http://example.com/api/storageinfo/api/storageinfo 401 (Unauthorized)