如何将空值传递给Cake中的单选按钮?
我已经查看了Cake的2.0助手形式的文档,但我似乎没有找到很多相关信息。
也许有些人可以启发我?
干杯
答案 0 :(得分:0)
FormHelper :: radio ( string $ fieldName,array $ options,array $ attributes )
创建一组单选按钮输入。
$options = array('M' => 'Male');
$attributes = array('legend' => false);
echo $this->Form->radio('gender', $options, $attributes);
将输出:
<input name="data[User][gender]" id="UserGender_" value="" type="hidden" />
<input name="data[User][gender]" id="UserGenderM" value="M" type="radio" />
的文档中看到的那样如果由于某种原因您不想要隐藏输入,请进行设置 $ attributes [&#39; value&#39;]到选定的值或布尔值false只会 这一点。