0

在我的 Grails 应用程序中,我有两个域类...Person 和 Course。两者之间存在一对多的关系(一个课程可以有多个人注册)。结果,默认的脚手架将在 show.gsp 中显示所有在课程中注册的人员的列表。

我修改了 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.paid.attended', 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>

在我的班级控制器中,我添加了:

class CourseController {

static scaffold = true

def toggleAttended = {
    def person = Person.get(params.id)
    if (person){
        person.attended = params.completed == 'true'
        person.save()
    }
    render ''
}

def togglePaid = {
    def person = Person.get(params.id)
    if (person){
        person.paid = params.completed == 'true'
        person.save()
    }
    render ''
}

}

当我选中/取消选中复选框时,会成功记住这些值。但是我注意到我的 MySQL 数据库没有为这三个复选框存储任何值,无论它们是选中还是未选中:

mysql> SELECT paid, attended, pfa FROM person;
+------+----------+-----+
| paid | attended | pfa |
+------+----------+-----+
|      |          |     |
+------+----------+-----+
1 row in set (0.00 sec)

这些列的类型是“位”。我想知道如果数据库中没有存储任何内容,这些值是如何被记住的。另外,我是否需要在控制器中添加额外的代码来更新数据库中的值?或者这应该自动发生吗?

谢谢!

4

1 回答 1

1

将您的选择更改为 SELECTpaid+0, Attended+0, pfa+0 FROM person;看看你是否能看到这些值。mysql 客户端无法呈现位值。这是一个非常非常古老的错误。

在 grails 中你无能为力。这是 mysql 命令行客户端的限制。它与您的应用程序无关。唯一需要使用该语法的情况是使用 mysql 命令行客户端。

bugs.mysql.com/bug.php?id=28422

于 2012-10-30T00:24:47.837 回答