检查 JSTL 中的多个列表大小

Check multiple list sizes in JSTL

如何链接多个长度检查?

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

<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 )}">

但两者都不起作用。

如果没有报错,可能的原因是:

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