中的请求参数值Struts2" />

获取中的请求参数值Struts2

发布于 2024-10-11 14:34:48 字数 303 浏览 1 评论 0原文

我有一个以以下结尾的网址:

/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 技术交流群。

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

发布评论

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

评论(1

顾冷 2024-10-18 14:34:48

这与此处解决的问题相同:检查请求参数值Struts2 标签

作为参数映射的类型

Map<String, String[]> and not Map<String, String>

,而不是 char[],'t' 的单引号计算为...长话短说,这两个标签应该有效:

<s:text name='%{#parameters["t"]}'/>
<s:text name="%{#parameters['st']}"/>

但请注意,这有效是因为 OGNL 魔法写起来会更明确:

<s:text name='%{#parameters["t"][0]}'/>
<s:text name="%{#parameters['st'][0]}"/>

因为这更接近类型。无论如何,上面链接的问题应该使这一点非常清楚。

This is the same issue as solved here: Checking request parameter value in Struts2 tag

That being the parameter map is of type

Map<String, String[]> and not Map<String, String>

and not char[] which the single quotes of 't' evaluates to... long story short these two tags should work:

<s:text name='%{#parameters["t"]}'/>
<s:text name="%{#parameters['st']}"/>

But note that this works because of OGNL magic and it would be more explicit to write:

<s:text name='%{#parameters["t"][0]}'/>
<s:text name="%{#parameters['st'][0]}"/>

as this is working closer to the type. Anyways the above linked question should make this very clear.

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