检查JSTL中的多个列表大小

时间:2017-06-01 16:29:18

标签: spring jstl jstl-functions

如何进行多项长度检查?

我试过这些方法没有效果:

<c:if test="${fn:length(app.applicationAdminComments) le 0  or fn:length(app.applicationChoComments) le 0  }"> 

<c:if test="${(fn:length(app.applicationAdminComments) le 0)  || (fn:length(app.applicationChoComments) le 0 )}">

但两者都没有效果。

1 个答案:

答案 0 :(得分:1)

如果您没有收到错误,可能的原因是:

  • app.applicationAdminComments为空
  • app.applicationChoComments为空
  • app.applicationAdminComments的长度为0
  • app.applicationChoComments的长度为0