FuelPHP - 模型上的pre_save()不起作用

时间:2014-01-14 22:54:04

标签: fuelphp

有谁知道如何让pre_save()pre_validate()在我的模型中工作?  我在模型中有下面的代码,但它永远不会被调用。

protected function pre_validate($data)
{
    //die("asefeg");
    $data->idRegistrant = Session::get('idRegistrant', null);
    return $data;
}

1 个答案:

答案 0 :(得分:0)

ORM没有像CRUD模型那样的pre_save()方法。对于此功能,您需要考虑实现观察者。在fuelphp docs

中可以找到大量有关此信息的信息