gpt4 book ai didi

Struts2 在选择标签中使用 Map

转载 作者:行者123 更新时间:2023-12-04 10:58:24 25 4
gpt4 key购买 nike

您可以轻松地在 struts2 select 标签中使用 List,但是有没有办法在标签中使用 Map ?如果可能,请提供示例代码...

谢谢!

最佳答案

在我的 Action 课上

public class MyAction extends ActionSupport {
private Map<String, String> map;

public String execute() throws Exception {
map = new HashMap<String, String>();
map.put("abc", "abc");
map.put("xyz", "xyz");
return SUCCESS;
}
}

对于映射到成功的jsp,使用这样的东西
<s:select list = "map" name = "name" label = "Name" headerKey="" headerValue = "Enter Value"/>

关于Struts2 在选择标签中使用 Map,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2887316/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com