每当插入或更新实体时,都会调用afterSave回调.如何检查实体是否是新插入的实体?
我想在afterSave回调中做的事情的伪代码.
if newly inserted { dispatch event using the events system; }
我有答案.答案如下:
原文链接:https://www.f2er.com/php/134536.htmlpublic function afterSave(Event $event,Entity $entity,array $options) { if ($entity->isNew()) { // do whatever you need to do here. } }
我希望这可以帮助那些对CakePHP 3不熟悉的人.
链接在这里:http://api.cakephp.org/3.0/class-Cake.Datasource.EntityInterface.html#_isNew