1

我正在使用 Grails 2.2.2。我有一个名为“Table”的域和一个自动生成的控制器 TableController。问题是,“更新”动作没有效果。

def update = {
    def tableInstance = Table.get(params.id)
    println params.definition
    if (tableInstance) {
        if (params.version) {
            def version = params.version.toLong()
            if (tableInstance.version > version) {

                tableInstance.errors.rejectValue("version", "default.optimistic.locking.failure", [message(code: 'table.label', default: 'Table')] as Object[], "Another user has updated this Table while you were editing")
                render(view: "edit", model: [tableInstance: tableInstance])
                return
            }
        }
        tableInstance.properties = params
        println tableInstance.definition
        if (!tableInstance.hasErrors() && tableInstance.save(flush: true)) {
            flash.message = "${message(code: 'default.updated.message', args: [message(code: 'table.label', default: 'Table'), tableInstance.id])}"
            redirect(action: "show", id: tableInstance.id)
        }
        else {
            render(view: "edit", model: [tableInstance: tableInstance])
        }
    }
    else {
        flash.message = "${message(code: 'default.not.found.message', args: [message(code: 'table.label', default: 'Table'), params.id])}"
        redirect(action: "list")
    }
}

第一个 println 有输出:“newValue” 第二个 pringln 有输出:“oldValue”。

接缝,以下行中的 dataBinding 不起作用:

tableInstance.properties = params

在 Grails 版本 1.3.7 中,它按预期工作。

欢迎任何建议!

4

1 回答 1

1

原因是属性是暂时的。在 Grails 2.x 中,由于安全问题,瞬态属性不再绑定。 看到这个问题

于 2013-10-31T11:10:54.660 回答