在扩展Controller_Rest
我有一个测试功能:
public function get_arr_exists($arr = array())
{
if (empty($arr))
{
$this->response(array(), 400);
}
else
{
$this->response(array(), 200);
}
}
我检查了燃料核心中的rest.php,它要求第一个参数不为空,否则它将返回404。
但我希望我的应用程序检查API是否以ok(200)响应(400)。 Rest Controller是否自动设置状态?
答案 0 :(得分:1)
设置响应状态。
$this->response->status = 200;