在相關表格中的數據我使用一個表:使用PersonMasters UserMasters和準:cakephp3無法插入使用「關聯」方法
$this->hasOne('person_masters', [
'className' => 'person_masters',
'foreign_key'=>'user_master_id',
'dependent' => true
]);
但是當我保存的數據只保存在user_masters表中的數據。我也在patchEntity中使用'關聯'方法。但它不是worked..Here是我的代碼用於保存數據:
$user = $this->UserMasters->newEntity();
$user = $this->UserMasters->patchEntity($user, $this->request->data, ['associated' => ['person_masters']]);
它只是將數據保存到user_masters ..所以我怎麼也保存在cakephp3 person_masters數據? 在此先感謝...
http://book.cakephp.org/3.0/en/views/helpers/form.html#field-naming-conventions – Salines