在jsf中传递一个列表作为输入参数

发布于 2024-11-04 10:11:59 字数 606 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

韬韬不绝 2024-11-11 10:11:59

虽然我在您的代码片段中没有看到任何输入字段:

您可以一起发送所有输入元素。只需让一个 ... 包装所有输入元素并使用一个 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 one h:commandLink or h:commandButton inside the form to submit all data together.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文