标签: fuelphp
有谁知道如何让pre_save()或pre_validate()在我的模型中工作? 我在模型中有下面的代码,但它永远不会被调用。
pre_save()
pre_validate()
protected function pre_validate($data) { //die("asefeg"); $data->idRegistrant = Session::get('idRegistrant', null); return $data; }
答案 0 :(得分:0)
ORM没有像CRUD模型那样的pre_save()方法。对于此功能,您需要考虑实现观察者。在fuelphp docs