jstl中c:if的使用
我数据库里有一个字段叫做审核状态emp_property_issuedby,是int类型的0和1,从数据库里查询完之后返回一个ArrayList,里面有该表的所有字段包括...
我数据库里有一个字段叫做审核状态emp_property_issuedby,是int类型的0和1,从数据库里查询完之后返回一个ArrayList,里面有该表的所有字段包括这个审核状态,输出到页面,在页面用c:forEach遍历该集合,我想实现这样的效果:
如果${p.emp_property_issuedby}为0,那么在页面上显示“未通过”
如果emp_property_issuedby为1,那么在页面上显示“通过”
请教c:if可以实现吗?
ccss7373:用了你的写法,倒是不报错了,但是页面上那一列什么也不显示了,是空的!我把你的写法改为:
<c:if test="${p.emp_property_issuedby}=='1'">通过</c:if>
也不行,也是啥都不显示~ 展开
如果${p.emp_property_issuedby}为0,那么在页面上显示“未通过”
如果emp_property_issuedby为1,那么在页面上显示“通过”
请教c:if可以实现吗?
ccss7373:用了你的写法,倒是不报错了,但是页面上那一列什么也不显示了,是空的!我把你的写法改为:
<c:if test="${p.emp_property_issuedby}=='1'">通过</c:if>
也不行,也是啥都不显示~ 展开
展开全部
能
<c:forEach
var="ps"
items="p"
<tr>
<td
width="10%">
${p.aa}
</td>
<td
width="50%"
>
<c:if
test="${p.emp_property_issuedby=='1'}">通过</c:if>
<c:if
test="${p.emp_property_issuedby=='0'}">未通过</c:if>
</td>
</tr>
</c:forEach>
<c:forEach
var="ps"
items="p"
<tr>
<td
width="10%">
${p.aa}
</td>
<td
width="50%"
>
<c:if
test="${p.emp_property_issuedby=='1'}">通过</c:if>
<c:if
test="${p.emp_property_issuedby=='0'}">未通过</c:if>
</td>
</tr>
</c:forEach>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询