JSP页面使用EL表达式出现的问题:javax.el.PropertyNotFoundException: Property 'ID' not found on type java.lang.Str
问题描述:
1. 后台返回到JSP前台的的list,在jsp页面使用EL表达式遍历时出现如下问题:javax.el.PropertyNotFoundException: Property 'ID' not found on type java.lang.String
2. ID在是int类型。需要在jsp页面把ID转为String类型。
3. 转换的方法为:${item[fn:trim(u.id)]}
需要在页面引入:
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
El表达式将int转String
${item[fn:trim(s.index)]}
El表达式判断是否为空字符串
${empty 值} 返回true ,表示为空字符串;
e.g
El表达式判断是否为空
${值 eq null } 返回true 的话,表示为空
posted on 2018-04-05 16:38 David_Deng 阅读(251) 评论(0) 编辑 收藏 举报