Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试在 beforeSave 方法中使用 $this->data 来显示请求数据。但是,我不知道为什么没有调用该方法。如何在 cakephp 模型的 beforeSave 方法中显示发布的数据?
您应该在问题中添加代码。这将显示您创建/更新的实体:
public function beforeSave($event, $entity, $options = array()) { debug($entity); die(); }