我需要帮助获取单选按钮的值并将其用作php cake controller中的变量。
<li class="search-pref-list-items__item"><label><input type="radio" name="pref" value="1">a</label></li>
<li class="search-pref-list-items__item"><label><input type="radio" name="pref" value="2">b</label></li>
<li class="search-pref-list-items__item"><label><input type="radio" name="pref" value="3">c</label></li>
我已经尝试了$ this-&gt; request-&gt;数据,但它仅适用于文本框, $ _GET []和$ _POST []现在也在工作
我将如何做到这一点?
答案 0 :(得分:0)
嗨Rey Norbert Besmonte,
您需要按照cakephp方法创建单选按钮。 请按照下面的方式参考我的代码,按照cakephp框架标准创建单选按钮。
$options = array('a'=>'1','b'=>'2','c'=>'3');
$attributes = array('div' => 'input', 'type' => 'radio', 'options' => $options,'class' => 'search-pref-list-items__item' ,'default' => '1');
echo $this->Form->radio('Filed Name',$attributes);
因此,您需要从代码中删除并放置代码。
希望这会对你有所帮助。