当所有者对象调用关联的行以执行 beforeSave 函数时,我一直遇到问题。对于这个例子,我在 Asset hasMany Versions 中使用了 Asset 和 AssetVersion。
我的意图是在 AssetVersion 模型中使用 beforeSave 通过 find 找到当前最高版本号,然后将其放入数据库中。我当然不能在控制器中使用 saveAssociated 并捕获asset_id 然后在 AssetVersion 模型上调用 save 但这感觉不是正确的方法。beforeSave 在 Asset 而不是 AssetVersion 中被调用。
class AssetsController extends AppController
{
public function add()
{
if (!$this->request->is('post'))
return false;
$md5 = md5(microtime(true));
$data['Versions'] = array(
array(
'md5' => $md5,
)
);
debug($data);
$this->Asset->create();
if ($this->Asset->saveAll($data))
{
die('boom');
$this->Session->setFlash(__('The asset has been saved'));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('The asset could not be saved. Please, try again.'));
}
}
}
class Asset extends AppModel
{
public $hasMany = array(
'Versions' => array(
'className' => 'AssetVersions'
)
);
public function beforeSave($options = array())
{
if(!isset($this->data['Asset']['created_id']))
$this->data['Asset']['created_id'] = CakeSession::read('Auth.User.id');
$this->data['Asset']['updated_by'] = CakeSession::read('Auth.User.id');
return parent::beforeSave();
}
}
class AssetVersion extends AppModel
{
public $belongsTo = array(
'Asset'
);
public function beforeSave($options = array())
{
debug('I dont get called at all');
debug($this->data);
die();
}
}
知道我做错了什么吗?我一直在尝试调试在 CakePHP 本身中调用的内容,并且到目前为止已经证明当保存关联数据时会分派一个事件,但我在 AssetVersion 中根本看不到我的调试。