如何处理Phalcon \ Mvc \ Model :: afterCreate中的错误

时间:2016-03-07 14:20:14

标签: php model-view-controller phalcon

我有一个模型,一旦保存在数据库上需要做一些进一步的操作,比如说在某处上传一个缩略图。最好的方法是覆盖Phalcon\Mvc\Model::afterCreate方法并将代码放在上面。

现在,假设上传操作失败:从afterCreate返回错误的最佳方法是什么(并最终通知控制器)?

1 个答案:

答案 0 :(得分:1)

我假设你正在使用ORM。

试试这个:

public function indexAction() {

    $pedido = new MyApp\Models\PedidoItem();
    $pedido->daleBR = 123;
    $pedido->save();

    print_r($pedido->getMessages());exit;

}