gpt4 book ai didi

jsp - 哪个更好?

转载 作者:行者123 更新时间:2023-12-04 17:54:17 25 4
gpt4 key购买 nike

很难说出这里问的是什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或言辞激烈,无法以目前的形式合理回答。如需帮助澄清此问题以便可以重新打开,visit the help center .




9年前关闭。




以下哪一项更好?

<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"/>

关于jsp - 哪个更好?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11090262/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com