小编典典

检查表达式语言中是否存在参数

jsp

v<c:if test="${param.username}" >
    </c:if>

如何检查param.username是否存在?


阅读 246

收藏
2020-06-08

共1个答案

小编典典

使用not empty支票。

<c:if test="${not empty param.username}" >
</c:if>

编辑:如果您有形式的参数?username(无值),则使用起来更安全${param.username ne null}

2020-06-08