3

你能帮我把这个 JSTL 标记转换为 JSTL 三元吗

<body
  <c:choose>
    <c:when test="${wcmMode.author}">class="author"</c:when>
    <c:otherwise>class="${page.class}"</c:otherwise>
  </c:choose>
>
4

1 回答 1

3

这很简单:

<body class="${ wcmMode.author ? 'author' : page.class }">
于 2012-10-04T09:14:26.027 回答