关于strtus2 项目中 EL表达式部分不能使用

问题描述:

在使用struts2的标签库<s:if test="">时,发现比较某个变量是否为空窜或null时使用EL表达式时出错

 

正确方法是使用OGNL表达式

 

<s:iterator value="#pageView.records" id="entry">
    <tr>
      <td bgcolor="f5f5f5"> <div align="center">${entry.code}</div></td>
      <td bgcolor="f5f5f5"> <div align="center"><a href="<s:url action="brandManage" method="editUI"/>?code=${entry.code }">
	  <img src="/images/edit.gif" width="15" height="16" border="0"></a></div></td>
      <td bgcolor="f5f5f5"> <div align="center">${entry.name}</div></td>
	  <td bgcolor="f5f5f5"> <div align="center"><s:if test="%{ #entry.logopath == ''}">没有${entry.logopath}</s:if></div></td>
	</tr>
</s:iterator>
 

你可能感兴趣的:(标签库)