0
我是JSTL的新手,由於某些原因,我無法使測試線正常工作。下面是簡單的代碼,我使用的是:<c:if test =「」>不起作用
<c:if test="${hasChild}">
test
</c:if>
當我使用
$ {} hasChild
它打印真正到了屏幕,但它不會對woork測試線和我不知道爲什麼。任何人都可以幫忙嗎?
我是JSTL的新手,由於某些原因,我無法使測試線正常工作。下面是簡單的代碼,我使用的是:<c:if test =「」>不起作用
<c:if test="${hasChild}">
test
</c:if>
當我使用
$ {} hasChild
它打印真正到了屏幕,但它不會對woork測試線和我不知道爲什麼。任何人都可以幫忙嗎?
在測試發生之前,您是否聲明瞭hasChild?即
<c:set var="hasChild">*Something which makes this value true*</c:set>
<c:if test="${hasChild}">
test
</c:if>