如何使用 Struts 标签测试给定的请求参数是否存在?
某些页面可以接收名为“P1”的特定请求参数:
page.do?P1=value1
现在,一个 scriptlet 正在测试该请求参数是否存在,如果 P1 是“value1”,则会在页面上呈现一些信息。
我想使用 Struts 标签重写它,而不是使用 scriptlet。
您能给我一些关于使用什么的提示吗?
替代脚本是这样的:
<%
String p1 = request.getParameter("P1");
if ("value1".equals(p1)) {
//do something
}
%>
Some pages can receive a certain request parameter called "P1":
page.do?P1=value1
Right now a scriptlet is testing the existence of the request parameter, and if P1 is "value1" some information is rendered on the page .
Instead of using a scriptlet I want to rewrite this using Struts tags .
Can you please give me some hints on what to use ?
The alternative scriptlet is something like this:
<%
String p1 = request.getParameter("P1");
if ("value1".equals(p1)) {
//do something
}
%>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信你应该是这样的。这是标准 taglib,它比 struts 标签更好
I believe that you should something like this. This is standard taglib and it is better idea than struts tags
试试这个——
它对我有用。
try this-
it would work for me.