HABTM form validation in CakePHP

前端 未结 7 1392
我在风中等你
我在风中等你 2020-12-03 06:33

I have a Projects table and a Users table which are linked by a HABTM relation. In the \"add\" new Project page I have a multiple checkbox section to select Users for the ne

7条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-03 07:02

    As per my comment on Guido's answer above, I use Guido's answer exactly, however I modify the data with the beforeSave callback before it saves to the database.

    I have this issue on Cake 2.4.5+

    public function beforeSave($options = array()) {
        $temp = $this->data['Group']['User'];
        unset($this->data['Group']['User']);
        $this->data['User']['User'] = $temp;
    
        return true;
    }
    

提交回复
热议问题