2013-03-14 118 views
0

Inside <c:chosse>當我們有多個<c:when>標籤時,它的行爲就像是if else else else邏輯結構。但是,如果我想做的事:使用jstl邏輯標籤

if(){ 
    if(){} 
    else if{} 
    if(){} 
    if(){} 
    if(){} 
    else{} 
} 

然後我可以使用沿側<c:when><c:if><c:choose>

<c:choose> 
    <c:when> 
    <c:when> 
    <c:if> 
    </:if> 

    <c:if> 
    </:if> 

    <c:when> 
    </:when> 

    <c:when> 
    </:when> 
    <c:otherwise> 
    </:otherwise> 
</c:choose> 

我似乎工作,但行爲存在保證?

+0

沒有正確的縮進,這段代碼是不可能讀取的。 – 2013-03-14 22:43:26

回答

0

您可以使用jstl,但考慮更改邏輯並將其移動到後端,因爲它在jsp中會過於複雜。