jsp和struts框架

发布于 2024-11-28 16:19:31 字数 209 浏览 1 评论 0原文

我在 jsp 中有一组十个问题。目前,我一次显示十个问题(编写一个循环并在单个 jsp 中的循环中迭代它们),但我的新要求是我必须一次仅显示一个问题,并且当用户回答第一个问题并单击时在 NEXT 按钮上,他应该能够看到第二个问题,依此类推...这里我也应该只使用单个 jsp...但是如何迭代十次相同的 jsp & ?我如何存储这些值,最后如何将所有这些值提交到表单?我正在使用struts框架。

I have a set of ten questions in a jsp. At present I'm showing ten of them at a time(writing a loop and iterating them in that loop in a single jsp)but my new requirement is I have to show only one question at a time and when user answers first question and clicks on NEXT button he should be able to see the second question and so on...here also I should use only single jsp... But how can iterate ten times the same jsp & and how can I store the values and at the end how can I submit all these values to a form? I'm using struts framework.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

感悟人生的甜 2024-12-05 16:19:31

你有两种解决方案

  1. 使用 Ajax 尽快提交每个问题的答案当它被回答时,然后加载下一个问题(再次使用ajax)。
  2. 将所有问题加载到 DIV 中并一次仅显示一个。当用户回答问题时,将答案存储在某个隐藏字段中 (),当他完成所有问题时,然后使用“

告诉我” 表单提交所有 10 个隐藏字段如果您需要更多说明。

You have two solutions

  1. Use Ajax to submit the answer of each question as soon as it is answered and then load the next question (again using ajax).
  2. Load all the questions in DIVs and show only one at a time. When user answers a question store the answer in some hidden field (<intput type="hidden">) and When he completes all the questions then submit all the 10 hidden fields with the form

Tell me if you need more clarification.

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