没有获得“索引” JSP 中从 for 循环到 if 循环的值

发布于 2024-07-09 09:52:49 字数 547 浏览 8 评论 0原文

我的 if 语句始终评估为 false 并且不进入 块。 因此,我无法在 if 条件下获取“index”的值,我已经尝试了用 # 和 % 附加索引的所有方法。 有人可以建议解决方案吗?

<c:forEach var="index" begin="1" end="<%=a%>" step="1">
    <s:if test="index == 1">
        <span class="currentpage"><b>${page_id}</b></span>
    </s:if>
    <s:else>
        <a href="searchAction.html?page_id=${index}&searchString=${searchString}" class="paginglinks">${index}</a>
    </s:else>
</c:forEach>

My if statement is always evaluating to false and not entering the <span> block. Because of which, I'm not able to get the value of "index" in the if condition, I've tried every thing appending index with # and %. Can anybody suggest the solution?

<c:forEach var="index" begin="1" end="<%=a%>" step="1">
    <s:if test="index == 1">
        <span class="currentpage"><b>${page_id}</b></span>
    </s:if>
    <s:else>
        <a href="searchAction.html?page_id=${index}&searchString=${searchString}" class="paginglinks">${index}</a>
    </s:else>
</c:forEach>

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

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

发布评论

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

评论(4

南七夏 2024-07-16 09:52:49

实际上,它

应该是标签中的一些冲突

<c:forEach var="index" begin="1" end="<%=a%>" step="1" varStatus="status">
                            <c:choose>
                            <c:when test="${page_id==index}">                       
                                <span class="currentpage"><b>${page_id}</b></span>
                            </c:when>
                            <c:otherwise>
                            <a href="searchAction.html?page_id=${index}&searchString=${searchString}" class="paginglinks">${index}</a>
                            </c:otherwise>
                            </c:choose>
                            </c:forEach>

got it actully it is some conflict in the tags

it should be like

<c:forEach var="index" begin="1" end="<%=a%>" step="1" varStatus="status">
                            <c:choose>
                            <c:when test="${page_id==index}">                       
                                <span class="currentpage"><b>${page_id}</b></span>
                            </c:when>
                            <c:otherwise>
                            <a href="searchAction.html?page_id=${index}&searchString=${searchString}" class="paginglinks">${index}</a>
                            </c:otherwise>
                            </c:choose>
                            </c:forEach>
ヅ她的身影、若隐若现 2024-07-16 09:52:49

冲突在于第一篇文章
您正在混合

  • JSTL 标签(c:forEach)
  • Struts 标签(s:if)

您建议的解决方案有效,因为
现在你有了

  • JSTL 标签(c:forEach)
  • 再次 JSTL 标签(c:when)

另一个好的解决方案是

  • Struts 标签(s:iterator)
  • 再次 Struts 标签(s:if)

一般来说,使用来自多种技术的标签
预计会有问题。

The conflict is that at the first post
you are mixing

  • JSTL tags (the c:forEach)
  • Struts tags (the s:if)

Your proposed solution works because
you now have

  • JSTL tags (the c:forEach)
  • JSTL tags again (the c:when)

Another good solution would be

  • Struts tags (the s:iterator)
  • Struts tags again (the s:if)

Generally speaking, using tags from multiple technologies
is expected to be problematic.

愛上了 2024-07-16 09:52:49

使用

 test="${index == 1}"

或尝试使用 varStatus 属性,以便...

<c:forEach var="index" varStatus="status" begin="1" end="<%=a%>" step="1">

 <s:if test="${status.count == 1}">
  <span class="currentpage"><b>${page_id}</b></span>
 </s:if>
 <s:else>
  <a href="searchAction.html?page_id=${index}&searchString=${searchString}" class="paginglinks">${index}</a>
 </s:else>
</c:forEach>

use

 test="${index == 1}"

or try using the varStatus attribute so...

<c:forEach var="index" varStatus="status" begin="1" end="<%=a%>" step="1">

 <s:if test="${status.count == 1}">
  <span class="currentpage"><b>${page_id}</b></span>
 </s:if>
 <s:else>
  <a href="searchAction.html?page_id=${index}&searchString=${searchString}" class="paginglinks">${index}</a>
 </s:else>
</c:forEach>
鹿童谣 2024-07-16 09:52:49

测试值不可评估,它只是页面的一个字符串。

编辑,你使用strut的语法。

添加“%{}”,如下所示:

<s:if test="%{index == 1}">

The test value isn't evaluatable, it's just a string to the page.

Edit, you have you use strut's syntax.

Add "%{}", like so:

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