This question already has answers here:
How to install JSTL? The absolute uri: http://java.sun.com/jstl/core cannot be resolved

(15个答案)


4年前关闭。





我将如何使以下代码起作用?

        <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 taglib的版本。它应该是1.1,所以您应该拥有(请注意URI):

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

关于jsp - 如何在不获取“..attribute测试不接受任何表达式的情况下”使用JSTL“if”标记,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3830210/

10-11 15:47