获取所有选中复选框的值 symfony2
get values of all selected checkboxes symfony2
<th scope="col">{{ d.id }} <input type="checkbox" value="{{ d.id }}" name="checkboxD" class="checker"></th>
如何从选中的复选框中获取值列表??
我的控制器动作
public function traiterAction() {
$IDs = array();
if ( $this->getRequest()->isMethod('POST') ) {
$IDs = $this->getRequest()->get('checkboxD');
}
return $this->render('@EgovPoste/test.html.twig',array('ids'=>$IDs));
}
您需要将名称更改为 checkboxD[] 。
希望对你有所帮助
<th scope="col">{{ d.id }} <input type="checkbox" value="{{ d.id }}" name="checkboxD" class="checker"></th>
如何从选中的复选框中获取值列表??
我的控制器动作
public function traiterAction() {
$IDs = array();
if ( $this->getRequest()->isMethod('POST') ) {
$IDs = $this->getRequest()->get('checkboxD');
}
return $this->render('@EgovPoste/test.html.twig',array('ids'=>$IDs));
}
您需要将名称更改为 checkboxD[] 。 希望对你有所帮助