我在新项目中使用Angular JS,PHP和Slimframework。
我在Angular JS中使用promises,但是如果你知道响应状态代码是否从API返回为200,那么只有“success”部分才有效。
在Slimframework中,默认响应状态代码为200,我的所有请求都返回状态代码为200.(如果没有错误则是正常的)
但我想做一些验证,如果验证失败,我只想在Slim框架中更改或设置自定义状态代码。在这种情况下,我将能够通过“错误”代码块
来捕获Angular JS中的问题例如:
SlimFramework Part
$app->get('/getUserInformations/{user_id}', function(Request $request, Response $response){
if(isLoggedIn()){
//Do something and send an answer with status code 200
}else{
//Send some errors with status code 500 or something else
}
});
Angular JS Part:
user.getUserInformations = function(){
var defer = $q.defer();
$http.get($rootScope.defaultApiPath + '/getUserInformations/1')
.success(function(response){
//if status code is 200 this means user logged in. Do something
defer.resolve(response);
})
.error(function(error, status){
// if status code is 500 this means not logged in. Show error message
defer.reject(error);
});
return defer.promise;
};
在SlimFramework的文档中,我发现了类似
的内容$newResponse = $response->withStatus(302);
$data = array('name' => 'Rob', 'age' => 40);
$newResponse = $oldResponse->withJson($data, 201);
但我无法使用它们。给我一些错误,找不到方法..
很快,我的问题是,如何在纤薄的框架中设置自定义状态代码..
提前谢谢
答案 0 :(得分:1)
您正在寻找的答案是......
return $response->withStatus(xxx);
http://www.slimframework.com/docs/objects/response.html#the-response-status