4

我试图检查列表是否包含特定元素或没有在<s:if>标签中使用 Struts 2?

<display:table class="noheader-border" id="data" name="lstAttendance" sort="list"
               uid="row" htmlId="sources" export="false">
    <display:column style="width:150px">
        <s:property value="%{#attr.row.worker.workerName}" />
    </display:column>
    <display:column style="width:10px;weight:bold;">:</display:column>
    <s:if test="lstSalaryDefinedWorkerId.contains(%{#attr.row.workerId})">
        ...
    </s:if>
...
4

1 回答 1

7

我想你可以使用 OGNL 语法来做到这一点。例如,我的操作类中有一个列表和一个属性,例如:

private List test;
private String p = "a1";
// And their getters and setters

public String execute() throws Exception {
    test = new ArrayList();
    test.add("a");
    test.add("b");
    test.add("c");
    test.add("d");
    test.add("e");
    return SUCCESS;
}

我需要在我的 JSP 页面中执行以下操作

<s:if test="%{p in test}">
  Inside If block
</s:if>
<s:else>
  Inside Else block
</s:else>

有关详细信息,请参阅 Struts 2 OGNL 文档:

于 2011-12-28T10:24:29.373 回答