$ HTTP响应头报文 [英] $http response header message

查看:123
本文介绍了$ HTTP响应头报文的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在anulgarjs有可能获取响应头报文?

is it possible in anulgarjs to fetch the response header message?

以类似于一个code

in a code similar to that

$http.get(url)
    .success(){
         something
    }.error(status,"headers text message)"{
             alert(status+" "+"headers text message or a method to get it";
    }

在警告我需要财产以后写的那样:
500内部服务器错误。
在控制台日志中我可以看到错误状态和文本消息,
我有什么摆在错误的情况下?什么是做的最好的方法?

in the alert i need to write somthing like that: 500 internal server error. In the console log i can see the error status and text message, what do i have to put in the error case? what is the best way to do that?

推荐答案

试试这个

$http.get(url)
    .then(function(response) {
  var data = response.data;
  var status = response.status;
  alert(status);
});

请参阅本文档

这篇关于$ HTTP响应头报文的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆