在jstl表达式中嵌入el表达式
Posted An
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在jstl表达式中嵌入el表达式相关的知识,希望对你有一定的参考价值。
一、问题
在jsp中,想要这么写:
<c:url value=‘/resources/themes/${easyuiThemeName}/easyui.css‘/>
但报错:According to TLD or attribute directive in tag file, attribute items does not accept any expressions。
意思是在attribute里不允许表达式。
二、解决
将页面的
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%>
改成
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%>
以上是关于在jstl表达式中嵌入el表达式的主要内容,如果未能解决你的问题,请参考以下文章