在页面实现常量替换,比如 entity.auditi 的值如果为0显示不需要否则显示需要
因为需求就这两个值 所以使用三目运算符比较简洁
如果值为很多个 可使用if  else进行判断


${entity.auditis=='0'?'不需要':'需要'}
或者
<%
   String s = (String)request.getAttribute("entity.auditis");
   if("0".equals(s)){
	s = "不需要";
   }else{
	s = "需要";
   }
%>
<%=s %>



本文转载:CSDN博客