我需要在cakephp中使用表单助手创建一个多选表单字段。该字段中的值将从具有HABTM到当前模型的表中填充。
实施此方法的最佳方法是什么?
答案 0 :(得分:6)
在你的ctp文件中:
echo $this->Form->input('Category', array(
'multiple' => 'multiple',
'type' => 'select',
));
在你的行动中:
$cats = $this->Category->find('all');
foreach ($cats as $category) {
$categories[$category['Category']['id']] = $category['Category']['title'];
}
$this->set(compact('categories'));