有条件地在视图中渲染 HTML 的干净方法?
在 JSP/Struts1 设置中是否有更简洁的方法来执行此操作?
...这里有一些 HTML ...
编辑:在管理模式下,我希望能够从表单元素访问其他参数, 例如来自表单元素:
input type="text" value="Test user" name="Owner"
编辑2:实际上,我的问题与中提出的问题非常相似: 按用户条件在 JSP 中渲染
但我并没有真正从可能的答案中得到“伪代码”
Is there a cleaner way to do this in a JSP/Struts1 setup ?
... some HTML here ...
EDIT: In admin mode I would like to have access to additional parameters from a form element,
e.g. from the form element:
input type="text" value="Test user" name="Owner"
EDIT 2: Actually, my problem is very similar to the question that was asked in : Conditionally Render In JSP By User
But I don't really get the "pseudo-code" from the likely answer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SessionConfig
是否作为 JSP 中的 bean 公开(作为请求/会话/Struts Form 的一部分)?如果不是,你可以揭露它。如果它是一个包含全局设置的静态类(从表面上看,这是可能的),您可以创建一个小包装器并将其放入 servlet 上下文中,然后您可以从 Struts 标记访问该上下文,如 <代码>范围=“应用程序”。
完成后,您可以通过 Struts 标签检查您的情况:
或者,如果您使用 EL / JSTL,也可以通过
完成同样的操作。Is
SessionConfig
exposed as a bean in your JSP (as part of request / session / Struts Form)?If it's not, you can expose it. And if it's a static class containing global settings (which, by the looks of it, is a possibility), you can create a small wrapper and put it in the servlet context which you'd then be able to access from Struts tags as
scope="application"
.Once that's done you can check your condition via Struts tags:
Or, if you're using EL / JSTL, same can be done via
<core:if>
.如果没有更多信息,很难回答这个问题,但我认为不要使用单独的视图:一个用于管理模式,一个用于正常模式。将页面的各个部分提取到图块中将帮助您轻松完成此操作;请参阅:http://tiles.apache.org/
Without more information, it's hard to answer this, but I'd think instead of separate views: one for admin mode, one for normal mode. Extracting the parts of your pages into tiles will help you do this without a lot of pain; see: http://tiles.apache.org/