我需要在httpProvider
的情况下将http响应代码从200更改为404.state('app.notfound', {
url: "not_found",
cache: false,
views: {
'menuContent' :{
templateUrl: "/template/not_found.html",
controller: "NotFoundCtrl"
}
}
});
$urlRouterProvider.otherwise('/not_found');
通常未找到控制器返回200.如何更改响应代码? 感谢
答案 0 :(得分:1)
无法使用客户端编程设置HTTP响应代码。响应代码由服务器发送,您只能按原样处理响应,并且不允许也不能更改它。