请求标题成功

时间:2014-11-10 18:25:47

标签: javascript angularjs promise

在角度服务中,我正在使用$http.get('some/url/')发出请求。我需要检查内容 - 处置成功的文件名应该是什么。我不确定是否有办法访问标题,所以现在我正在使用它。有没有办法在成功函数中获取标题?

2 个答案:

答案 0 :(得分:3)

  

有没有办法在成功函数中获取标题?

AngularJs $http Documentation, second paragraph verbatim

中所示
$http.get('/someUrl').
  success(function(data, status, headers, config) {
    // this callback will be called asynchronously
    // when the response is available
  }).
  error(function(data, status, headers, config) {
    // called asynchronously if an error occurs
    // or server returns response with an error status.
  });

答案 1 :(得分:0)

你可以做到

$http.get('/some/Url').then(function(successResponse){
    console.log(successResponse); // this will print out the response object and you can access headers, config, data, etc.

}, function(failureResponse){
    console.log(successResponse);
});