本文介绍了哪个更好?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
以下哪一项更好?
<c:set var="var1" value="false" scope="request"/>
<c:if test="${someCondition}">
<c:set var="var1" value="true" scope="request"/>
</c:if>
或以下
<c:choose>
<c:when test="${someCondition}">
<c:set var="var1" value="true" scope="request"/>
</c:when>
<c:otherwise>
<c:set var="var1" value="false" scope="request"/>
<c:otherwise>
</c:choose>
推荐答案
这都不适合我:
<c:set var="var1" value="${someCondition}" scope="request"/>
这篇关于哪个更好?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!