在jsf中传递一个列表作为输入参数
我在 jsf 中有一个页面,用户在其中输入所有数据并单击提交按钮,并且必须将其保存在数据库中。请找到我当前正在使用的代码。
<h:column>
<f:facet name="header">
<h:outputText value="Registration"/>
</f:facet>
<h:form>
<h:commandLink id = "submit" value="submit" action="#{bean.submitDate}">
<f:param name="sNum" value="#{list.sNumber}" />
<f:param name="firstName" value="#{list.fName}" />
<f:param name="lastname" value="#{list.lName}" />
...
</h:commandLink></h:form>
</h:column>
我想知道我是否可以一次发送整个数据,或者我必须如上所述单独发送所有字段
I have a page in jsf, where the user enters all the data and clicks on submit button, and it has to be saved in the database. Please find the code i'm currently using.
<h:column>
<f:facet name="header">
<h:outputText value="Registration"/>
</f:facet>
<h:form>
<h:commandLink id = "submit" value="submit" action="#{bean.submitDate}">
<f:param name="sNum" value="#{list.sNumber}" />
<f:param name="firstName" value="#{list.fName}" />
<f:param name="lastname" value="#{list.lName}" />
...
</h:commandLink></h:form>
</h:column>
i wanted know if i can send whole data at a time or I have to send all the fields individually itself as above
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然我在您的代码片段中没有看到任何输入字段:
您可以一起发送所有输入元素。只需让一个
...包装所有输入元素并使用一个
h:commandLink 或表单内的
h:commandButton
一起提交所有数据。Although I don't see any input fields in your code snippet:
You can send all input elements together. Just let one single
<h:form>
...</h:form>
wrap all your input elements and use oneh:commandLink
orh:commandButton
inside the form to submit all data together.