logic:messagesPresent属性;什么是c:如果等价?

问题描述 投票:-1回答:1

目前在我的JSP中我有以下logic标记:

                <logic:messagesPresent property="eve">
                    <span class="form-error">
                </logic:messagesPresent> 

我试图用logic:messagesPresent标签代替这个c:if标签,但我不知道如何用property="eve"处理c:if。有任何想法吗?

java spring jsp jstl struts
1个回答
1
投票

只需在test属性中添加属性:

你可以这样做:

 <c:if test = "${not empty eve}">
        <span class="form-error">
 </c:if>
© www.soinside.com 2019 - 2024. All rights reserved.