Cakephp - 创建一个多选表单字段

时间:2012-11-24 04:42:56

标签: cakephp cakephp-2.0 helpers

我需要在cakephp中使用表单助手创建一个多选表单字段。该字段中的值将从具有HABTM到当前模型的表中填充。

实施此方法的最佳方法是什么?

1 个答案:

答案 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'));