HABTM dropdown items not selected

前端 未结 2 1260
暖寄归人
暖寄归人 2021-01-25 10:19

I created a site for fun to learn CakePHP but for some reason I can\'t get a multiple select dropdown box to show my selected items. In this example 1 video game can have multip

2条回答
  •  花落未央
    2021-01-25 10:50

    For everyone who sets public $recursive = -1; in his AppModel due to performance reasons, or changes the recursion in his controller: The automagic won't work without recursive 1! Make sure you change it in the options when retreiving your data for the edit.

    $options = array(
        'recursive' => 1,
        'conditions' => array('YourModel.' . $this->YourModel->primaryKey => $id)
    );
    $this->request->data = $this->YourModel->find('first', $options);
    

提交回复
热议问题