0

我在 Grails 应用程序中有两个具有一对多关系的域:Course 和 Person。一门课程可能有很多人。当我查看课程的 show.gsp 时,它将显示所有已注册课程的人员姓名的列表。

我希望该列表按姓氏字母顺序排序。但是,每次我刷新 show.gsp 时,列表的顺序都会发生变化(似乎无法识别模式)。我在我的个人域中设置了一个映射以按姓氏“asc”排序,但这没有效果。

我修改了脚手架 show.gsp 以在表格中显示名称以及其他复选框。这是修改后的代码:

<g:if test="${courseInstance?.persons}">
            <br />
            <table>
                <thead>
                    <tr>
                        <th>#</th>
                        <g:sortableColumn property="person"
                            title="${message(code: 'person.lastName.label', default: 'Person')}" />
                        <g:sortableColumn property="paid"
                            title="${message(code: 'person.paid.label', default: 'Paid')}" />
                        <g:sortableColumn property="attended"
                            title="${message(code: 'person.attended.label', default: 'Attended')}" />
                    </tr>
                </thead>
                <tbody>
                    <g:set var="counter" value="${1}" />
                    <g:each in="${courseInstance.persons}" status="i" var="p">
                        <tr class="${(i % 2) == 0 ? 'even' : 'odd'}">
                            <td>
                                ${counter}
                            </td>
                            <td class="property-value" aria-labelledby="persons-label"><g:link
                                    controller="person" action="show" id="${p.id}">
                                    ${p?.encodeAsHTML()}
                                </g:link></td>
                            <td><g:checkBox name="paid" value="${p.paid}"
                                    onclick="${remoteFunction(action:'togglePaid', id:p.id,
                                params:'\'completed=\' + this.checked')}" /></td>
                            <td><g:checkBox name="attended" value="${p.attended}"
                                    onclick="${remoteFunction(action:'toggleAttended', id:p.id,
                                params:'\'completed=\' + this.checked')}" /></td>
                        </tr>
                        <g:set var="counter" value="${counter + 1}" />
                    </g:each>
                </tbody>
            </table>
        </g:if>

我可以在 show.gsp 或域中进行任何修改以使列表默认按字母顺序排序(除非单击可排序的列)?

谢谢!

4

1 回答 1

3

你能展示一下你是如何在域级别上设置它的吗?它应该是这样的......

class Person {
    …
    static mapping = {
        sort "lastName"
    }
}

在此处查看文档。如果排序似乎正确但仍然无法正常工作,您可以尝试停止应用程序并执行grails clean并重新运行它。

更新: 答案是下面的评论......

于 2012-10-24T01:38:11.887 回答