gpt4 book ai didi

jsp - 如何使用JSTL "if"标签而不获取 "..attribute test does not accept any expressions"

转载 作者:行者123 更新时间:2023-12-02 20:10:33 27 4
gpt4 key购买 nike

如何让下面的代码工作?

        <c:if test="${null != searchResults}" >
<c:forEach items="${searchResults}" var="result" varStatus="status">

我尝试了许多不同的变体,例如:

<c:if test="${searchWasPerformed}" >

<c:if test="<%=request.getAttribute("searchWasPerformed") %>" >

甚至

<% boolean b = null != request.getAttribute("searchResults"); %>
<c:if test="${b}" >

看起来真的很难看:/但我不断得到

org.apache.jasper.JasperException: /WEB-INF/jsp/admin/admin-index.jsp(29,2) PWC6236: According to TLD or attribute directive in tag file, attribute test does not accept any expressions

我该如何解决这个问题?

最佳答案

检查您使用的 JSTL 标记库版本。它应该是 1.1,所以你应该有(注意 URI):

<%@ taglib prefix = "c" uri = "http://java.sun.com/jsp/jstl/core" %>

关于jsp - 如何使用JSTL "if"标签而不获取 "..attribute test does not accept any expressions",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3830210/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com