symfony2:不考虑未选中复选框的值
symfony2: unchecked checkbox's value is not taken into account
环境:
- Symfony2.6.7
- PHP 5.6.32-Win32-VC11-x64
- Windows10
我是 symfony 的新手。我正在尝试向现有 table 添加新列。该列的每一行都有复选框。到目前为止,我可以在渲染它们时通过 StoreController.php 选中或取消选中复选框。然后,我选中或取消选中一些复选框以更改状态。并提交表格。但是我得到了数组格式的奇怪结果。看起来未选中的复选框的值未被考虑在内。我应该如何解决这个问题以获取所有复选框的检查状态。
有。但是这个表单是使用Post请求提交的,所以不一样。
json_edit.html.twig
<form method="post" action="/store/json_edit?{% if (1 != isStore) %}id={{ id | e }}&{% endif %}json={{ jsonFileName | e }}&type={{ type | e }}">
...(ellipsis)
<td><div style="text-align: center;"><input type="checkbox" name="tv_shipping[]" {% if (1 == jsonDataTv.shipping) %}checked value="1"{% else %}value="0"{% endif %} /></div></td>
It displays as this.
table 有三行。
然后,单击按钮提交表单,并尝试从复选框中获取结果。
StoreController.php
var_dump($request->get("tv_shipping"));//array(2) { [0]=> string(1) "1" [1]=> string(1) "1" }
结果数组只有两个对象。我认为它应该有如下三个对象。
//array(2) { [0]=> string(1) "1" [1]=> string(1) "0" [2]=> string(1) "1" }
感谢评论区的指教。我自己想出了一个解决方案。
我为每个复选框元素添加了索引号 value="{{key}}"
。键是索引,从 0 开始,随着行索引的增加而增加 1。
json_edit.html.twig
<td><div style="text-align: center;"><input type="checkbox" name="tv_shipping[]" {% if (1 == jsonDataTv.shipping) %}checked{% endif %} value="{{key}}"/></div></td>
在 php 控制器中,我按行索引循环并检查是否存在复选框值等于行索引的复选框。如果匹配,则选中该复选框。如果没有匹配的对,则表示该复选框未选中。
StoreController.php
//get state if checkbox is checked or not as boolean.
$checked = false;
if(0 < count($request->get("tv_shipping"))){
foreach($request->get("tv_shipping") as
$key_arrayResult=>$value_arrayResult){
if((int)$value_arrayResult === $count+1){
$checked = true;
break;
}
}
}
环境:
- Symfony2.6.7
- PHP 5.6.32-Win32-VC11-x64
- Windows10
我是 symfony 的新手。我正在尝试向现有 table 添加新列。该列的每一行都有复选框。到目前为止,我可以在渲染它们时通过 StoreController.php 选中或取消选中复选框。然后,我选中或取消选中一些复选框以更改状态。并提交表格。但是我得到了数组格式的奇怪结果。看起来未选中的复选框的值未被考虑在内。我应该如何解决这个问题以获取所有复选框的检查状态。
有
json_edit.html.twig
<form method="post" action="/store/json_edit?{% if (1 != isStore) %}id={{ id | e }}&{% endif %}json={{ jsonFileName | e }}&type={{ type | e }}">
...(ellipsis)
<td><div style="text-align: center;"><input type="checkbox" name="tv_shipping[]" {% if (1 == jsonDataTv.shipping) %}checked value="1"{% else %}value="0"{% endif %} /></div></td>
It displays as this. table 有三行。
然后,单击按钮提交表单,并尝试从复选框中获取结果。
StoreController.php
var_dump($request->get("tv_shipping"));//array(2) { [0]=> string(1) "1" [1]=> string(1) "1" }
结果数组只有两个对象。我认为它应该有如下三个对象。
//array(2) { [0]=> string(1) "1" [1]=> string(1) "0" [2]=> string(1) "1" }
感谢评论区的指教。我自己想出了一个解决方案。
我为每个复选框元素添加了索引号 value="{{key}}"
。键是索引,从 0 开始,随着行索引的增加而增加 1。
json_edit.html.twig
<td><div style="text-align: center;"><input type="checkbox" name="tv_shipping[]" {% if (1 == jsonDataTv.shipping) %}checked{% endif %} value="{{key}}"/></div></td>
在 php 控制器中,我按行索引循环并检查是否存在复选框值等于行索引的复选框。如果匹配,则选中该复选框。如果没有匹配的对,则表示该复选框未选中。
StoreController.php
//get state if checkbox is checked or not as boolean.
$checked = false;
if(0 < count($request->get("tv_shipping"))){
foreach($request->get("tv_shipping") as
$key_arrayResult=>$value_arrayResult){
if((int)$value_arrayResult === $count+1){
$checked = true;
break;
}
}
}