我employees
在控制器中使用这个将一些值插入到表中:
$this->Employee->create();
if ($this->CoreProgram->save($this->request->data)) {
$this->Session->setFlash('Program has been added.');
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash('Unable to add record.');
}
但是,我想向另一个表插入一条记录audit
。更具体地说,当前日期以及employee_id
我用于的字段employees
。做到这一点的最佳方法是什么?我应该创建$this->Audit->create();
吗?或者,还有更好的方法?