struts2
发布于 2024-10-16 09:15:29 字数 172 浏览 2 评论 0 原文

我正在尝试使用 struts 操作类填充 选项。如何从 jsp 中初始化该类?因此,我没有使用 myjsp.action 之类的东西,而是使用 myjsp.jsp 并从 jsp 本身内部调用 myjsp.action。

谢谢

I am trying to populate the <s:select options using a struts action class. How do I initialiase the class from within a jsp? So instead of using something like myjsp.action - I have myjsp.jsp and invoke myjsp.action from within the jsp itself.

Thanks

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

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

发布评论

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

评论(1

淡莣 2024-10-23 09:15:29

根据您在评论中的解释,我觉得您应该这样做:

User -> HTTPRequest -> Action (populate data required for s:select in HTTPRequest)
                          |
                          V
User <- HTTPResponse <- OnSuccess, show a final.jsp (this jsp can include the searchForm.jsp)

searchForm 中的 s:select 将正确呈现。

Based upon your explanation in the comment, I feel this is how you should be doing this:

User -> HTTPRequest -> Action (populate data required for s:select in HTTPRequest)
                          |
                          V
User <- HTTPResponse <- OnSuccess, show a final.jsp (this jsp can include the searchForm.jsp)

The s:select in searchForm will be rendered correctly.

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