Jsp 和 ?: 未按预期工作

发布于 2024-09-26 23:48:03 字数 391 浏览 6 评论 0原文

我有这段代码:

<c:forEach var="product" items="${products}" begin="${begin}" end="${end}" varStatus="loopStatus" step="1">
    <div class="home_app "${loopStatus.index % 2 == 0 ? '' : 'white_bg'}">

当我浏览到 jsp 时,我在 div 中得到了这个:

<div }="" white_bg="" :="" ?="" 0="" 2="=" %="" ${loopstatus.index="" class="home_app ">

I have this code:

<c:forEach var="product" items="${products}" begin="${begin}" end="${end}" varStatus="loopStatus" step="1">
    <div class="home_app "${loopStatus.index % 2 == 0 ? '' : 'white_bg'}">

When I browse to the jsp I am getting this in the div:

<div }="" white_bg="" :="" ?="" 0="" 2="=" %="" ${loopstatus.index="" class="home_app ">

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

满身野味 2024-10-03 23:48:03

试试这个(以粗体更改):

<c:forEach var="product"
           items="${products}"
           begin="${begin}"
           end="${end}"
           varStatus="loopStatus"
           step="1">
    <div class="${loopStatus.index % 2 == 0 ? '' : 'white_bg'}">

我个人的偏好是以下而不是 ?: 运算符:

<c:choose>
    <c:when test="${(loopStatus.index % 2) == 1}">
        <div>
    </c:when>
    <c:otherwise>
        <div class="white_bg">
    </c:otherwise>
</c:choose>

Try this (change in bold):

<c:forEach var="product"
           items="${products}"
           begin="${begin}"
           end="${end}"
           varStatus="loopStatus"
           step="1">
    <div class="${loopStatus.index % 2 == 0 ? '' : 'white_bg'}">

My personal preference is the following instead of the ?: operator:

<c:choose>
    <c:when test="${(loopStatus.index % 2) == 1}">
        <div>
    </c:when>
    <c:otherwise>
        <div class="white_bg">
    </c:otherwise>
</c:choose>
扎心 2024-10-03 23:48:03

美元符号前的 " 似乎位置错误。请将其删除。

The " before the dollar sign seems to be at the wrong place. Remove it.

夜未央樱花落 2024-10-03 23:48:03

条件运算符(以及模板文本中的 EL)是在 JSP 2.0 中引入的。您运行的 servletconainer 很可能不支持 JSP 2.0,或者将 web.xml 声明为 Servlet 2.2 或更早版本。

The conditional operator (and EL in template text) was introduced in JSP 2.0. Chances are that you're running a servletconainer which doesn't support JSP 2.0 or is declaring web.xml as Servlet 2.2 or older.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文