jsp和struts框架
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你有两种解决方案
),当他完成所有问题时,然后使用“告诉我” 表单提交所有 10 个隐藏字段如果您需要更多说明。
You have two solutions
<intput type="hidden">
) and When he completes all the questions then submit all the 10 hidden fields with the formTell me if you need more clarification.