Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JSTL c:ifが正しく機能していないように見える問題が発生しているので、次のステートメントでテストしました...
<c:if="${1 == 2}"> 1 is equal to 2 </c:if>
そして、「1は2に等しい」を出力しています...
ここに欠けているものはありますか?
編集:問題を見つけました、そしてそれは私がばかげていました..問題は私がページにjstlコアタグライブラリを含めるのを忘れていたということでした
test条件付きのEL式は、属性の値である必要があります。
test
<c:if test="${1 == 2}"> 1 is equal to 2 </c:if>
<c:if>