如何根据 struts 1.x 标签中的键访问映射值,而不仅仅是迭代

发布于 2024-12-01 08:42:32 字数 133 浏览 0 评论 0原文

我在与表单关联的 bean 中有一个 getter 方法,它返回一个 Map。我想使用 Struts 1.x 标签从映射中访问与给定 String 键相对应的对象。我可以使用其条目集迭代地图并检索每个键及其相应的值,但我想不出直接使用其键访问该值的方法

I have a getter method in the bean associated with my form, which returns a Map. I want to access the object corresponding to a given String key from the map using Struts 1.x tags. I can iterate over the map by using its entry set and retrieve each key and its corresponding value, but I can't think of a way to access the value using directly its key

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

愿得七秒忆 2024-12-08 08:42:32

只需使用

${bean.map.key}

即可获得。或者,如果它是另一个变量风格的动态键,请使用大括号表示法,

${bean.map[key]}

如果硬编码键本身包含一个或多个句点,这也很有用

${bean.map['key.with.periods']}

Just use

${bean.map.key}

to get it. Or, if it is a dynamic key in flavor of another variable, use the brace notation

${bean.map[key]}

this is also useful if the hardcoded key itself contains one or more periods

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