在Form中给JSF Radiobuttons提供什么价值?

时间:2018-02-05 13:11:05

标签: jsf jsf-2 xhtml

我的jsf xhtml文件中有一个表单中有两个单选按钮,但我不知道应该给它们哪些值以及要提交给我的提交按钮的值。这两个单选按钮决定用户是想要从他的账户存入还是取出一些东西(这是我所在类的在线atm的模拟)我有一个Bean,其中存入或退出的两种方法都在,但我可以不清楚这一点。 (我是新人,对不起)

<h:outputLabel class="form-check-label">
                <h:selectOneRadio value="#{}">
                    <f:selectItem itemValue="#{}" 
                         itemLabel="Deposit" />
                    <f:selectItem itemValue="#{}" 
                         itemLabel="Withdraw" />
                </h:selectOneRadio>
</h:outputLabel>
<button type="submit" class="btn btn-primary">Submit</button>

1 个答案:

答案 0 :(得分:0)

 <h:selectOneRadio value="#{}">
                <f:selectItem itemValue="#{}" 
                     itemLabel="Deposit" />
                <f:selectItem itemValue="#{}" 
                     itemLabel="Withdraw" />
 </h:selectOneRadio>

<h:selectOneRadio value="#{}">将变量放在要放置所选值的位置

<f:selectItem itemValue="#{}" itemLabel="Deposit" />放置单选按钮的值

请参阅此处的示例h:radiobutton mkyoungh:radiobutton tutorialspoint