「JSTL」c:ifタグとc:setタグで変数を設定するサンプル

2020年11月13日

構文

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<c:if test ="条件">
<c:set var=変数名 value=値/>
</c:if>
<c:if test ="条件"> <c:set var=変数名 value=値/> </c:if>
<c:if test ="条件">
 <c:set var=変数名 value=値/>
</c:if>

サンプルコード

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<c:if test="${userData.depCode !=null && userData.depCode.length()>0}">
<c:set var="umCd" value="12"/>
<c:set var="depCd" value="${userData.depCode}"/>
</c:if>
※userDataはクラスのオブジェクト
<c:if test="${userData.depCode !=null && userData.depCode.length()>0}"> <c:set var="umCd" value="12"/> <c:set var="depCd" value="${userData.depCode}"/> </c:if> ※userDataはクラスのオブジェクト
<c:if test="${userData.depCode !=null && userData.depCode.length()>0}">
  <c:set var="umCd" value="12"/>
  <c:set var="depCd" value="${userData.depCode}"/>
</c:if>
※userDataはクラスのオブジェクト

 

JSTL

Posted by arkgame