如何根据 struts 1.x 标签中的键访问映射值,而不仅仅是迭代
我在与表单关联的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用
即可获得。或者,如果它是另一个变量风格的动态键,请使用大括号表示法,
如果硬编码键本身包含一个或多个句点,这也很有用
Just use
to get it. Or, if it is a dynamic key in flavor of another variable, use the brace notation
this is also useful if the hardcoded key itself contains one or more periods