作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是angularjs的新手。我正在尝试提出需要授权的API请求。我已将其包含在请求的 header 中,但仍无法正常工作。我确定我的访问 token 正在运行。有什么建议吗?
$scope.fetch = function() {
$scope.code = null;
$scope.response = null;
$http({
method: $scope.method,
url: $scope.url,
cache: $templateCache,
headers: {
Authorization: "access token"
}
}).
success(function(data, status) {
$scope.status = status;
$scope.data = data;
}).
error(function(data, status) {
$scope.data = data || "Request failed";
$scope.status = status;
});
};
最佳答案
您可以使用以下
$http.defaults.headers.post["Content-Type"] = "application/x-www-form-urlencoded;charset=utf-8";
$http.defaults.headers.common['Authorization'] = "Bearer " + user.oauthInfo.access_token;
关于AngularJS如何在Http请求中包含 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19459128/
我是一名优秀的程序员,十分优秀!