EL&JSTL

作者: oookko | 来源:发表于2018-04-08 13:28 被阅读0次

    1.EL从域中取出数据

    ${var} 从全域中查找

    2.EL内置对象

    pageContext-web开发中的pageContext
    ${pageContext.request}获取request对象
    ${pageContext.request.contextPath} web应用名称
    在提交页面的action用的比较多

    3.EL表达式

    ${1==1?true:false}
    ${empty user}判断对象是否为空 user为键名

    4.JSTL

    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>导入
        //1.条件语句表达式
        <c:if test="${1==1 }">
        xxxxx
        </c:if>
        <c:if test="${1!=1 }">
        xxxxx
        </c:if>
    
        2.foreach标签
        //第一种foreach
        <c:forEach begin="0" end="5" var="i">${i }</c:forEach>
        //第二种foreach
        <c:forEach items="${produstlist}" var="pro">
        ${pro.pname}
        </c:forEach>
    

    相关文章

      网友评论

          本文标题:EL&JSTL

          本文链接:https://www.haomeiwen.com/subject/ybxfhftx.html