带显示标签的开关盒
我想根据从会话中获得的信息在“显示标签”列中显示各种数据。
如何将开关盒与显示标签集成
? 如果我从会话中获得的单位值为 1 等,我想显示 AAA。
这就是我想要做的。
switch(List.unit){
case 1:
unit = "AAA";
break;
case 2:
unit = "BBB";
break;
case 3:
unit = "CCC";
break;
default:
unit = "undefined";
break;
}
先谢谢了。
I want to display various data in Display Tag column according to what I get from Session.
How can I integrate switch case with display tag <display:column>
?
I want to display AAA if the unit value I get from session is 1 etc.
Here is what I want to do.
switch(List.unit){
case 1:
unit = "AAA";
break;
case 2:
unit = "BBB";
break;
case 3:
unit = "CCC";
break;
default:
unit = "undefined";
break;
}
Thanks ahead.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用displaytag 的操作与不使用displaytag 时的操作完全一样。只需计算调度到 JSP 的 servlet/action 中所需的单元,并将该单元存储在请求中的某个 bean 中。然后在 JSP 中访问此 bean:
或者使用 JSTL 在 JSP 本身中计算它,但它更详细:
You do it with displaytag exactly as you would do it without it. Just compute the desired unit in the servlet/action dispatching to your JSP and store this unit in some bean in the request. Then access this bean in the JSP :
Or compute it in the JSP itself, using the JSTL, but it's more verbose: