gpt4 book ai didi

angularjs - 带授权 token header 的有 Angular $ http GET请求

转载 作者:行者123 更新时间:2023-12-04 13:59:13 26 4
gpt4 key购买 nike

我正在尝试使用 Angular $ http.get复制此 curl ,

curl -H "Accept: application/json" http://localhost:3000/posts -H 'Authorization: Token token="1111"'

但我不确定如何正确设置 Angular 头

这就是我尝试过的方式
    app.controller('newsCtrl', function($http, $scope){
$scope.news =[];
$http.get('http://localhost:3000/posts.json', {
headers: {"Authorization": "Token[token]=1111"}).success(function(response){
console.log(response)
})
})

那么,如何正确设置标题?

谢谢
ps:我没有使用基本身份验证。

最佳答案

如果您希望Authorization header 包含Token token="1111",那么这应该可以工作。看来您的括号也没有匹配。

  $http.get('http://localhost:3000/posts.json', {
headers: {
"Authorization": 'Token token="1111"'
}
}).success(function(response){
console.log(response)
});

关于angularjs - 带授权 token header 的有 Angular $ http GET请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32343391/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com