0

在扩展的 API 控制器中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 会自动设置状态吗?

4

1 回答 1

1

设置响应状态。

$this->response->status = 200;
于 2012-04-13T08:01:15.473 回答