我有这个if语句只有当数据库中的文本作为我给页面的参数时才显示图片:
<c:if test="${row.hozzaadta}==${param.userid}">
<img src="http://cdn3.iconfinder.com/data/icons/softwaredemo/PNG/128x128/DeleteRed.png" width="25" height="25">
</c:if>
它不起作用,我很确定我使用它错了,你能帮帮我吗?
答案 0 :(得分:1)
我认为这是不可能的,但我会从<property name="hibernate.connection.isolation">8</property>
这样发送布尔值
servlet
在boolean myBool = row.getHozzaadta().equals(param.getUserId());
request.setAttribute("myBool", myBool);
JSP