从数据库中的列获取复选框的多个值时遇到问题。
在我的数据库中,我在一列中得到了“9,10”的值
但是,在编辑视图中我只得到了 9,这意味着只有值为 9 的复选框被选中。
我如何确保在编辑视图中选中了值 9 和 10 的复选框
我想我需要爆炸 9,10 的值。但我不知道我该怎么做。
控制器
<?php $categories = $this->Product->Category->find('list',array('conditions' =>
array('parent_id !=' => 0),'order' => array('Category.name ASC')));
$this->set(compact('subcategories'));
?>
查看 (admin_edit)
<?php
echo $form->create('Product', array('action' =>
'edit','class'=>'cmxform','id'=>'form2','type' => 'file'));
echo $form->input('category_id', array('multiple' => 'checkbox', 'label' =>
false,'validate'=>'required:true','options'=>$categories));
echo $form->end('Save',array('class' => 'btn'));
?>