在我的侧边栏中有单选按钮,并且想要设置搜索查询,如果选择了单选按钮new
,然后选择了select * from products
,如果选择了old
,则select * from posts
。在view/element/sidebar.ctp
中包含:
<label class="radio">
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
NEW
</label>
<label class="radio">
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
USED
</label>
答案 0 :(得分:0)
您可以在控制器中查看提交的值。
$this->request->data['optionsRadios'];