在以下代码中,page.currentPagePath
例如www.index
,value.path
为www.index.html
。我想检查两者是否不等于
<c:if test="${page.currentPagePath '.html' ne value.path} }">
<li class="main-nav">
<a class="main-nav-link"
href="${value.redirectPath}">${value.pageTitle}</a>
</li>
</c:if>
如何在测试中将.html
附加到page.currentPagePath
? page.currentPagePath '.html'
无效
答案 0 :(得分:2)
concatenator运算符与Java中的相同:+
:
${(page.currentPagePath + '.html') ne value.path}