jstl_fn方法库
Posted Kooing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jstl_fn方法库相关的知识,希望对你有一定的参考价值。
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
1,startsWith,endsWith
<c:if test="${fn:endsWith(param.aa, \'end\') }"> ends </c:if> <c:if test="${fn:startsWith(param.aa, \'start\') }"> start </c:if>
2,indexOf
<c:set var="test" value="${param.aa }" scope="application"/> <c:if test="${ fn:indexOf(test,\'hello\') != -1 }"> hello </c:if>
3split
<c:set value="${fn:split(header,\',\') }" var="headerList"/>
<c:forEach var="item" items="${headerList }">
${item }<br/>
</c:forEach>
以上是关于jstl_fn方法库的主要内容,如果未能解决你的问题,请参考以下文章
typescript Angular 2测试片段。代码库https://developers.livechatinc.com/blog/category/programming/angular-2/