我们所有的内容页面都有一个特定的标题X-Foo.当ng视图的内容发生变化时,我们希望在不同的元素中显示新页面的X-Foo标题.每当内容变化时,我们如何获得这个值?
@H_404_4@编辑:由于这显然不清楚,标题应该在响应中,而不是请求.
编辑:由于这显然不清楚,标题应该在响应中,而不是请求.
app.config(function ($httpProvider) { $httpProvider.interceptors.push('httpInterceptor'); }).factory('httpInterceptor',function (liveInterviewConfiguration) { return { request : function (request) { console.info("Your request headers are"); console.info(request.headers); return request; },requestError : function (error) { return error; },response : function (response) { return response; },responseError : function (error) { return error; } }; });