struts中<s:if>的使用

来源:互联网 发布:人工智能产业链及个股 编辑:程序博客网 时间:2024/05/01 16:40

原文地址:http://hi.baidu.com/z499470647/item/5d8512d5da5ffc4adcf9bef7

最近在使用struts标签开发项目,很少使用这个标签,许多都还不会用,自己所用标签中,其他标签都还可以,但是就是<s:if>这个标签的用法颇多,特别是写条件那里不好写,这样也不对,那样也不对,太烦人了,不如JSTL,但是好像JSTL不能和STRUTS同时使用,郁闷。

 通过网上查找资料归纳一下<s:if>这个标签的用法:

A:直接写表达式

<s:set name='china' value='china'> 
<s:if test="${china=='china'}">show</s:if> 
result:  show 
<s:set name="count" value="99"> 
<s:if test="${count>0}">bigger than 0</s:if> 
<s:else>not</s:else> 
result:  bigger than 0 
B:在遍历里面使用判断:

<s:iterator id="id" value="label"> 
    <s:if test="%{#id.attrValueId!=0}"> 
        <s:property value="#id.attrValue" /> 
                <s:property value="#id.countAll" />                 <s:property value="#id.countRequest" />  
    </s:if> 
    <s:else> 
        <s:property value="#id.attrValue" /> 
    </s:else> 
</s:iterator> 
label是一个List<Attribu>  Attribu 包含属性attrValueId和countAll
在s:iterator域内这是id的值是"id",使用ognl读取遍历对象的方法是 #id
test="%{#id.attrValueId!=0}" 看子对象的属性attrValueId是否为0
<s:property value="#id.attrValue" /> 打印子对象的attrValue属性

C:直接读取对象

<s:if test="request.price==null||request.price<=0"> 
</s:if> 
读取对象request,判断price是否小于0;
request 可以是如何的javaBean,也可以是基本属性

D:直接读取对象的另一种写法

 <s:if test="%{aTransactionSummaryBean!=null}"> 
E:多个条件的判断

<s:if test='%{isShowAll=="Y"||isShowAll==null||isShowAll==""}'> 
    <li class="selected"> 
</s:if> 
<s:else> 
    <li>else 
</s:else> 
isShowAll 为Action 里面的字符串属性

F:直接拿Action里面的boolean 貌似不xing
Action里面

private boolean choosed = true; 
public boolean isChoosed(){ 
    return choosed; 

<s:if test="choosed"></s:if> 
发现这个判断无法正确运行,也许是ognl 是通过get方法来获取对象的,如果在action 里面有下面的方法;

public String getChoosed(){ 
    return "true"; 

上面那个s:if可以正确执行 
最后注意一点:ognl和jstl标签不能互相嵌套

原创粉丝点击