Struts 2中如何获取get参数?
在我的结果 jsp 页面(视图)中,如何访问 get 参数?
我尝试过:
<%
String para = request.getParameter('whatever');
%>
但没有成功。
我知道我可以使用但是...我喜欢获取jsp代码中的值。
In my result jsp page(view), how do I access a get parameter ?
I tried:
<%
String para = request.getParameter('whatever');
%>
but it didn't work.
I know that I can use but...I like to get the value in jsp code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它是当前请求的实际参数,则应该如此。尽管您需要使用双引号,因为您正在编写 Java 代码。
但你为什么要这样做呢?
It should, if it's an actual parameter of the current request. Although you'd need to use double-quotes, since you're writing Java code.
But why would you want to do this?