获取中的请求参数值Struts2
我有一个以以下结尾的网址:
/list.action?t=Local&st=Politics
我想将 2 个值放入 2
我尝试这样做:
<s:text name="%{#parameters['t']}"/>
<s:text name="%{#parameters['st']}"/>
但我只得到最后一个参数值“st”,而不是第一个参数值。
如何获取多个参数值?
I have a url which ends:
/list.action?t=Local&st=Politics
I want to place the 2 values in 2 <s:text/>
I tried to do it this way:
<s:text name="%{#parameters['t']}"/>
<s:text name="%{#parameters['st']}"/>
But I only get the last parameter value which is "st", but not the first one.
How can I fetch multiple parameter values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这与此处解决的问题相同:检查请求参数值Struts2 标签
作为参数映射的类型
,而不是 char[],'t' 的单引号计算为...长话短说,这两个标签应该有效:
但请注意,这有效是因为 OGNL 魔法写起来会更明确:
因为这更接近类型。无论如何,上面链接的问题应该使这一点非常清楚。
This is the same issue as solved here: Checking request parameter value in Struts2 tag
That being the parameter map is of type
and not char[] which the single quotes of 't' evaluates to... long story short these two tags should work:
But note that this works because of OGNL magic and it would be more explicit to write:
as this is working closer to the type. Anyways the above linked question should make this very clear.