1

我尝试使用 AbstractRestfulController。我创建控制器类:

class MyController extends AbstractRestfulController{

    public function getList(){
        $data = array();

        return new JsonModel(array(
            'data' => $data,
        ));
    }

    public function get($id){
        $data = array();

        return new JsonModel(array(
            'data' => $data,
        ));
    }

    public function create($data){
        $data = array();

        return new JsonModel(array(
            'data' => $data,
        ));
    }

    public function update($id, $data){
        $data = array();

        return new JsonModel(array(
            'data' => $data,
        ));
    }

    public function delete($id){
        $data = array();

        return new JsonModel(array(
            'data' => $data,
        ));
    }

}

和路由:

return array(
    'router' => array(
        'routes' => array(
            'mylink' => array(
                'type'    => 'Segment',
                'options' => array(
                    'route'    => '/mylink[/:id]',
                    'constraints' => array(
                        'id'     => '[0-9]+',
                    ),
                    'defaults' => array(
                        'controller' => 'MyModule\Controller\My',
                    ),
                ),
            ),
        ),
    ),
    'controllers' => array(
        'invokables' => array(
            'MyModule\Controller\My' => 'MyModule\Controller\MyController',
        ),
    ),
    'view_manager' => array(
        'strategies' => array(
            'ViewJsonStrategy',
        ),
    ),
);

但是当用户调用错误的方法或错误的 id 或其他任何东西时会发生什么?我想自己处理。怎么做?

4

1 回答 1

3

您的 api 仍应以请求的格式(json、xml 等)返回响应,通常带有一些描述问题的错误代码/消息,以及适当的 http 响应代码。您可以告诉您的 api 的消费者预期的响应是什么,但是当他们弄错时,由他们来处理它。

从这个角度来看,这是一个设置响应并使用要返回的相关信息填充模型的简单案例,典型的响应可能如下所示......

public function get($id)
{
    // some processing to find id ...

    // no id found
    if (!$found) {
        // set 404 Not Found response
        $this->getResponse()->setStatusCode(404);
        // return message to client
        return new JsonModel(array(
            'error' => 404,
            'reason' => sprint_f('Requested id "%s" not found', $id'),
        ));
    }
}

Obviously do the same for your other methods, and try to use an appropriate HTTP response code

于 2013-03-06T09:57:21.527 回答