2

当使用在 JSF 2.2 中添加的 jsf: 属性使用绑定到 bean 的纯 HTML 单选按钮时,我遇到了一个问题,即生成的单选输入名称不匹配:

<label>
     <input type="radio" value="foo" name="a-radio" jsf:id="fooOption" jsf:value="#{fooBean.value} />
</label>
<label>
     <input type="radio" value="bar" name="a-radio" jsf:id="barOption" jsf:value="#{fooBean.value} />
</label>

但是,当页面被渲染时,输入的名称属性变为“[some:jsf:id]:fooOption”和“[some:jsf:id]:barOption”,这意味着选中一个不会取消选中另一个!这是一个错误,还是 jsf: 属性命名空间不支持单选按钮?

4

2 回答 2

4

改为指定nameas passthrough 属性。它将覆盖隐式属性。

<html ... xmlns:a="http://xmlns.jcp.org/jsf/passthrough">

<label>
    <input type="radio" value="foo" a:name="a-radio" jsf:id="fooOption" />
</label>
<label>
    <input type="radio" value="bar" a:name="a-radio" jsf:id="barOption" />
</label>

您只需要将其重新声明为<f:viewParam name="a-radio" value="#{fooBean.value}">,或者手动从请求参数映射中获取提交的值。

于 2015-08-10T10:02:58.687 回答
0

您可以更好地使用h:selectOneRadio包含一系列s:selectItems 的组件。

<h:selectOneRadio value="#{fooBean.value}">
    <f:selectItem itemValue="foo" itemLabel="foo" />
    <f:selectItem itemValue="bar" itemLabel="bar" />
</h:selectOneRadio>

有关更完整的示例,请参见http://www.mkyong.com/jsf2/jsf-2-radio-buttons-example/

于 2015-08-10T10:00:44.170 回答