我在input.xhtml文件中有如下代码,它接受用户的输入。但是这个BootsFaces代码没有用,请有人帮我解决这个问题,如果有人面对它之前。
<b:form id="studentForm" styleClass="form-horizontal">
<h:panelGrid columns="1" cellpadding="5">
<b:inputText label="E-mail:" labelStyle="width:80px;">
<f:facet name="prepend">
<h:inputText value="#{studentBean.firstName}" styleClass="form-control" />
</f:facet>
</b:inputText>
</h:panelGrid>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<b:commandButton value="Create" action="#{studentBean.createStudentForm}" styleClass="btn btn-default" />
</div>
</div>
</b:form>
您正在使用b:inputText
错误。你不应该把h:inputText
包在里面。您可以使用b:inputText
标记绑定值:
<b:inputText label="First name:"
labelStyle="width:80px;"
value="#{studentBean.firstName}"/>
也可以看看: