4

我已关注此 wiki并成功构建了自定义查询。

它工作正常。我在表之间使用了连接。

我的问题是如何使用 liferay 搜索容器在 jsp 上显示它,因为搜索容器中的 className 需要一个模型类。

编辑:
到目前为止我尝试过的是:

<%

getAttendanceData attName = new getAttendanceData();
List<Object[]> displayAttListName = AttendanceLocalServiceUtil.findAttendance();

ArrayList name = new ArrayList();
ArrayList title = new ArrayList();
ArrayList status = new ArrayList();
ArrayList remarks = new ArrayList();

for(Object[] att:displayAttListName) {

    name.add(att[0]);
    title.add(att[1]);
    status.add(att[2]);
    remarks.add(att[3]);
}

%>

<liferay-ui:search-container delta="20" emptyResultsMessage="No Results Found">
    <liferay-ui:search-container-results
            total="<%= displayAttListName.size() %>"
            results="<%= ListUtil.subList(displayAttListName , searchContainer.getStart(), searchContainer.getEnd()) %>"
        />

    <liferay-ui:search-container-row modelVar="search"
        className="java.lang.Object">


    <%
    for(Object displayName:name) {
    %>

        <liferay-ui:search-container-column-text name='studName' value = '<%=String.valueOf(displayName)%>' href="">

        </liferay-ui:search-container-column-text>
    <%
    }
    %> 

    </liferay-ui:search-container-row>
    <liferay-ui:search-iterator/>
</liferay-ui:search-container>  

我在上面所做的将 10 个名称中的每一个在列中显示 10 次。
我希望名称出现在每个新行上。我应该如何修改上面的代码?

编辑 2
考虑到name前面定义的数组,我做了以下事情:

<liferay-ui:search-container-column-text name="employee name" href = "">

    <%=name.getClass().getDeclaredFields().toString() %>

</liferay-ui:search-container-column-text>

有了以上内容,我得到的结果类似于:[Ljava.lang.reflect.Field;@195f1af在每一行上。

4

1 回答 1

3

我看到name,title和field 都是(根据您的评论status) ,因此在循环中您应该将 a 转换为 a并且您不需要这四个。remarksStringforObjectStringArrayList

下面是行标签的样子:

<liferay-ui:search-container-row className="java.lang.Object" modelVar="search">

    <%--
        Since an "Object[]" is nothing but an "Object", we first cast the "search"
        instance to an "Object[]" and then to a "String"
    --%>
    <liferay-ui:search-container-column-text name='name' value='<%= (String) ((Object[])search)[0] %>' /> 
    <liferay-ui:search-container-column-text name='title' value='<%= (String) ((Object[])search)[1] %>' /> 
    <liferay-ui:search-container-column-text name='status' value='<%= (String) ((Object[])search)[2] %>' /> 
    <liferay-ui:search-container-column-text name='remarks' value='<%= (String) ((Object[])search)[3] %>' /> 

</liferay-ui:search-container-row>

你去,这应该工作。

我认为更简洁的方法是定义一个 POJO 来存储这些值,然后可以返回 POJO 的列表。我还没有尝试过第二种方法。

另一种标准方法是在任何一个实体中包含额外字段,*Impl然后返回该实体的列表,在您的情况下,我假设您有Student实体Attendance,因此您可以将字段status&remarks放入StudentImpl,然后返回 aList<Student>fname放入AttendanceImplandList<Attendance>从 finder 方法返回。(此评论后更新)

于 2013-05-23T15:45:01.093 回答