我知道我可以使用AngularJS访问HTTP请求的GET参数
$location.search().parameterOfInterest
但是如何访问请求的HTTP标头?
我在这里不使用$ http。我在询问对AngularJS网页的请求。
这个问题和答案使我相信这是不可能的: Accessing the web page's HTTP Headers in JavaScript
答案 0 :(得分:0)
您可以使用通过HTTP配置对象调用的request interceptor。 HTTP configuration object具有标头属性,您可以在拦截器内部自由访问/修改。
response object of promise还具有可访问的标头属性。