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タグをJSTL三項に変換するのを手伝ってくれませんか
<body <c:choose> <c:when test="${wcmMode.author}">class="author"</c:when> <c:otherwise>class="${page.class}"</c:otherwise> </c:choose> >
それは非常に簡単です:
<body class="${ wcmMode.author ? 'author' : page.class }">