我正在使用JSTL标签。我有下面的代码。

<c:set var="refreshSent" value="false"/>

现在变量 refreshSent发送的具有 boolean 值还是字符串?

谢谢!

最佳答案

这将是一个 boolean 值。您可以通过比较

<c:if test="${refreshSent eq false}">


<c:if test="${refreshSent eq 'false'}">

第二个是字符串比较。

10-05 22:59