JSP 또는 JSTL 내에있는 경우


283

JSP 파일의 조건에 따라 HTML 코드를 출력하고 싶습니다.

if (condition 1) {
    Some HTML code specific for condition 1
}
else if (condition 2) {
    Some HTML code specific for condition 2
}

어떻게해야합니까? JSTL을 사용해야합니까?


1
Exampledepot에는 좋은 예가 있습니다. 보세요> exampledepot.8waytrips.com/egs/javax.servlet.jsp.jstl.core/…
darkapple

답변:


536

JSTL을 사용해야합니까?

예.

JSTL을 사용하여 jsp에서 조건부 렌더링을 수행하기 위해 <c:if><c:choose>태그를 사용할 수 있습니다 .

if 를 시뮬레이션하려면 다음을 사용할 수 있습니다.

<c:if test="condition"></c:if>

if ... else 를 시뮬레이션하려면 다음을 사용할 수 있습니다.

<c:choose>
    <c:when test="${param.enter=='1'}">
        pizza. 
        <br />
    </c:when>    
    <c:otherwise>
        pizzas. 
        <br />
    </c:otherwise>
</c:choose>

이것에 대한 Thx ... 실제로 UI 개발자에 더 가깝습니다 ... JSTL에 대한 지식이 많지 않습니다 .JSTL과 유사한 작동 예제를 제공해 주시겠습니까?. if..else
testndtv

예를 들어 Thx. 내가 가진 조건은 실제로 JS 조건입니다. if if navigator.userAgent.match (/ iPad / i)! = null if test = "condition"에 직접 쓸 수 있습니다.
testndtv

1
잘 JSTL 서버 끝에서 실행하고 그것에서 HTML을 상자에 클라이언트에게 전달합니다
Jigar Joshi

좋아 .. 괜찮아 ...하지만 실제 조건, 즉 test = "condition"... JS 조건을 지정할 수 있습니까? 그렇다면 직접 작성할 수 있습니까? 예를 들어 <c : when test = "navigator .userAgent.match (/ iPad / i)! = null; ">
testndtv

테스트하려는 조건으로 질문을 업데이트 할 수 있습니까
Jigar Joshi

170

다른 텍스트를 출력하려는 ​​경우 더 간결한 예는 다음과 같습니다.

${condition ? "some text when true" : "some text when false"}

c : choose 보다 짧습니다 .


이 자바 스크립트입니까 아니면 .jsp입니까?
otherDewi

1
부울 변수를 조건으로 사용할 때 작동하지 않습니다.
Adnane.T

이것을 특수 태그로 묶어야합니까 아니면 HTML에 직접 붙여 넣어야합니까?
CodyBugstein

5
@otherDewi : JSTL이며 JSP 파일에서 사용할 수 있습니다. 조건부 또는 삼항 연산자는 Javascript를 포함하여 다른 많은 언어로 존재합니다.
bergie3000

2
@ bergie3000 : 아니요 , JSTL 이 아닙니다 . 이것은 EL 입니다.
BalusC

105

이를위한 구성은 다음과 같습니다.

<c:choose>
   <c:when test="${..}">...</c:when> <!-- if condition -->
   <c:when test="${..}">...</c:when> <!-- else if condition -->
   <c:otherwise>...</c:otherwise>    <!-- else condition -->
</c:choose>

조건이 비싸지 않으면 때로는 두 개의 구별되는 <c:if태그 를 사용 하는 것이 더 좋습니다.


4
조건이 처음 충족되면 두 번째는 실행되지 않을 것이라고 가정 할 수 있습니까?

처음부터 컨텐츠 지원을 즉시 이용할 수 있기 때문입니다. 그리고 webdevs는 아직 또 다른 SSL을 배우지 않고도 사용할 수 있기 때문에
Bozho

11
<%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core' %>
<c:set var="val" value="5"/>
<c:choose> 
  <c:when test="${val == '5'}">
    Value is 5
  </c:when>
  <c:otherwise>
    Value is not 5
  </c:otherwise>
</c:choose>

10

strings비교 하려면 다음 JSTL을 작성하십시오.

<c:choose>
    <c:when test="${myvar.equals('foo')}">
        ...
    </c:when>
    <c:when test="${myvar.equals('bar')}">
        ...
    </c:when>
    <c:otherwise>
        ...
    </c:otherwise>
</c:choose>

Tomcat 7 이상과 같은 새로운 컨테이너에서 .equals와 같은 메소드 만 호출 할 수 있다고 생각합니다.
Ring


2
<%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core' %>
<c:set var="isiPad" value="value"/>
<c:choose>
   <!-- if condition -->
   <c:when test="${...}">Html Code</c:when> 
   <!-- else condition -->
   <c:otherwise>Html code</c:otherwise>   
</c:choose>

0
<c:if test="${any_cond}" var="condition">
    //if part
</c:if>
<c:if test="${!condition}">
    //else part
</c:if>

-1

JSTL Tag Libe를 사용하여 다음을 수행하려면 다음 단계를 수행하십시오.

[요구 사항] 숫자가 40보다 크고 50보다 작 으면 "4로 시작하는 두 자리 숫자"를 표시하고 그렇지 않으면 "기타 숫자"를 표시하십시오.

[솔루션]

1. Please Add the JSTL tag lib on the top of the page.`
     <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>`

2. Please Write the following code
`
<c:choose>
       <c:when test="${params.number >=40 && params.number <50}">
              <p> Two digit number starting with 4. </p>
       </c:when>
       <c:otherwise>
              <p> Other numbers. </p>
       </c:otherwise>
  </c:choose>`

-1

<% %>jsp 페이지에 if-else 조건을 작성하고 외부에 HTML 코드를 작성할 수 있습니다<% %>

예를 들면 다음과 같습니다.

   <%
        String username = (String)session.getAttribute("username");
        if(username==null)  {
    %>            
        <p> username is null</p> //html code
    <%
        } else {
    %>
        <p> username is not null</p> //html code
    <%
        }
    %>

-1

문자열을 비교하려면 다음 JSTL을 작성하십시오.

<c:choose>
    <c:when test="${myvar.equals('foo')}">
        ...
    </c:when>
    <c:when test="${myvar.equals('bar')}">
        ...
    </c:when>
    <c:otherwise>
        ...
    </c:otherwise>
</c:choose>

-1
<c:choose>
<c:when test="${not empty userid and userid ne null}">
      <sql:query dataSource="${dbsource}" var="usersql">
                SELECT * FROM newuser WHERE ID = ?;
                <sql:param value="${param.userid}" />
      </sql:query>
 </c:when>
 <c:otherwise >
       <sql:query dataSource="${dbsource}" var="usersql">
                 SELECT * FROM newuser WHERE username = ?;
                 <sql:param value="${param.username}" />
       </sql:query>                              
  </c:otherwise>


솔루션을 제공 할 수도 있지만 코드로 세부 사항을 추가하는 것을 고려하십시오
Patel Romil

-2

저도 같은 문제를 겪고 그리고 난 당신이 JSTL에서 자바 스크립트를 사용할 수 없습니다 생각 하면 조건.

해결 방법은 Javascript로 할 수 있습니다.

<script>

    var isiPad = navigator.userAgent.match(/iPad/i) != null;

    if (isiPad) {
        document.write("Some HTML code for con1");
    } else {
        document.write("Some HTML code for con2");
    }

</script>

작성하려는 HTML 코드가 있어야하는 곳에이 스크립트를 넣어야합니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.