我在 Employee 和 Schedule 之间有很多关系。在编辑员工时,我设法获取当前的日程安排并填充我的表单。
保存后,我使用:
if ($this->Employee->save($this->request->data)) {
$this->Employee->Schedule->save($this->request->data, $validate = false);
....
}
员工数据保存良好,但日程记录保持不变。
我实际上将 id 作为数组的一部分提供。在我的控制器上, debug($this->request->data) 显示:
array(
'Employee' => array(
'emp_position' => '1',
'name' => 'the name',
'emp_gender' => '1',
'emp_father' => '',
'emp_mother' => '',
'emp_dob' => 'October 13, 1964',
...
..
),
'Schedule' => array(
(int) 0 => array(
'id' => '7',
'ho_lu2' => '10:00',
'ho_ma2' => '01:00',
'ho_mi2' => '00:00',
'ho_ju2' => '00:00',
'ho_vi2' => '00:00',
'ho_do4' => '00:00'
)
)
)
.
***************** Update ************
我认为这与我的两张桌子上的外键不同有关
我的员工表:
CREATE TABLE IF NOT EXISTS `employees` (
`id` int(5) DEFAULT NULL,
`emp_appserial` int(5) unsigned NOT NULL AUTO_INCREMENT,
...
(请注意,在 Employee 表上,emp_appserial 是我的 pk autoincr,对于某些记录,employee_id 可以为空)
我的日程表:
CREATE TABLE IF NOT EXISTS `schedules` (
`id` int(5) NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
`employee_id` int(5) unsigned NOT NULL,
...
由于我使用不同的字段链接了这些表,因此我使用了 foreignKey:
在我的模型上,我链接了:员工模型:
var $hasMany = array(
'Schedule' => array(
'foreignKey' => 'employee_id', //(field on Schedule)
'dependent' => true
)
);
public $primaryKey = 'emp_appserial'
时间表模型:
var $belongsTo = array('Employee',
'Employee' => array(
'foreignKey' => 'emp_appserial' //(field on Employee)
)
);
我发布的数据现在包括 schedule 的 employee_id 和 Employee 的 emp_appserial
array(
'Employee' => array(
'id' => null,
'emp_appserial' => '119'
...
),
'Schedule' => array(
(int) 0 => array(
'id' => '6',
'name' => 'segundo horario',
'emp_appserial' => '119',
'employee_id' => '119'
)
)
)
(尝试将 ID 和序列都附加到 Schedule 以试试我的运气 - 不好。)
非常感谢任何帮助。
非常感谢 !