<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));
}
答案 0 :(得分:0)
您需要将名称更改为checkboxD []。 我希望这会对你有所帮助