我的 GSP 中有 ag:form,其字段名称为“email-address”、“passwd”和“passwd-confirm”。
我还有一个带有“email”、“password”和“passwordConfirm”等属性的Command 对象。
在我的控制器操作中,我希望 Grails 将表单字段绑定到一个新的 Command 对象:
def register(RegistrationCommand registration) {
// do something with registration.email, registration.password, etc.
}
看起来 Grails 正在尝试通过 name将请求参数绑定到 Command 对象。有什么方法可以自定义该绑定,以便我的表单参数可以绑定到名称不匹配的 Command 对象属性?