我正在尝试使用angular发送授权标头。我在我的容器上调试以显示标题信息。当我用邮差发送标题时,它可以正常工作,但不能使用角度。
这是我用角度尝试的方式:
var config = {
headers: {
'Authorization': 'Basic <Base64 String>'
}
};
$http.get("http://localhost:8888/api/myrest", config)
.success(function (response) {
$scope.records = response.records;
});