2

我正在尝试将字段确认密码添加到用户注册表单。这是我的域类的摘录:

package usuario

class Usuario {

    transient springSecurityService

    String password
    String confirmarPassword

    static constraints = {

        password blank: false, password: true, size:5..15, matches:/[\S]+/
        confirmarPassword blank:false, password: true, size:5..15, matches:/[\S]+/, validator:{ val, obj ->
            if (obj.password != obj.confirmarPassword)
                return 'usuario.password.dontmatch'
        }

    }   

    static transients = ['confirmarPassword']

    static mapping = {
        password column: '`password`'
    }

    Set<Rol> getAuthorities() {
        UsuarioRol.findAllByUsuario(this).collect { it.rol } as Set
    }

    def beforeInsert() {
        encodePassword()
    }

    def beforeUpdate() {
        if (isDirty('password')) {
            encodePassword()
        }
    }

    protected void encodePassword() {
        password = springSecurityService.encodePassword(password)
    }
}

obj.confirmarPassword始终为null,因此永远不会完成约束。

我按照这里的建议安装了 Grails 模板。我更改了属性persistentProperties,但它仅在_form.gsp 处,并且Grails 字段插件不使用_form.gsp。因此,瞬态属性不会出现在 Internet 浏览器中。

我将 _form.gsp 生成的瞬态属性复制到 create.gsp:

<fieldset>
    <g:form class="form-horizontal" action="create" >

        <div class="fieldcontain ${hasErrors(bean: usuarioInstance, field: 'confirmarPassword', 'error')} required">
            <label for="confirmarPassword">
                <g:message code="usuario.confirmarPassword.label" default="Confirmar Password" />
                <span class="required-indicator">*</span>
            </label>
            <g:field type="password" name="confirmarPassword" maxlength="15" pattern="${usuarioInstance.constraints.confirmarPassword.matches}" required="" value="${usuarioInstance?.confirmarPassword}"/>
        </div>

        <fieldset>          
            <f:all bean="usuarioInstance"/>
            <div class="form-actions">
                <button type="submit" class="btn btn-primary">
                    <i class="icon-ok icon-white"></i>
                    <g:message code="default.button.create.label" default="Create" />
                </button>
            </div>
        </fieldset>
    </g:form>
</fieldset>

瞬态属性出现在屏幕上,但obj.confirmarPassword仍为

我认为的最后一种方法是修改views_fields\default_field.gsp以也使用这些瞬态属性,但我没有找到如何。这是文档。这是该文件的内容:

<%@ page defaultCodec="html" %>
<div class="control-group ${invalid ? 'error' : ''}">
    <label class="control-label" for="${property}">${label}</label>
    <div class="controls">
        <%= widget %>
        <g:if test="${invalid}"><span class="help-inline">${errors.join('<br>')}</span></g:if>
    </div>
</div>

是否可以使用Grails Fields 插件?在客户端或服务器端测试的条件在哪里?(我认为部分检查是在客户端,但所有限制都在服务器端再次检查)。

4

2 回答 2

1

哦,我以前遇到过。

声明

        String confirmarPassword

并使它像这样对我不起作用

        static transients = ['confirmarPassword']

        transient  confirmarPassword 

正如您为 springService 所做的那样......我现在不知道为什么这不起作用,而这个,有些人可能有更好的澄清......

于 2013-08-21T13:19:40.710 回答
1

在最新版本的 Grails 中,瞬态属性默认不与表单绑定。这是可绑定约束的文档。这就是我的代码将变成的样子(我刚刚添加bindable: true):

static constraints = {

    password blank: false, password: true, size:5..15, matches:/[\S]+/
    confirmarPassword bindable: true, blank:false, password: true, size:5..15, matches:/[\S]+/, validator:{ val, obj ->
        if (obj.password != obj.confirmarPassword)
            return 'usuario.password.dontmatch'
    }
}

但是,瞬态属性没有用 显示<f:all bean="usuarioInstance"/>,我们必须手动添加这些属性:<f:field bean="${usuarioInstance}" property="confirmarPassword" />。这不是一个理想的解决方案。我会在几天内保持这个问题开放,希望有人知道答案。

更新

就我而言,上述解决方案也不起作用,因为我使用的是 Spring Security Core 插件。它给出了下一个错误:

usuario.Usuario 条目中的空 id(发生异常后不刷新会话)

在这种情况下,我们必须使用命令对象。该问题在这篇文章中进行了描述(并解决) 。

于 2013-08-20T23:14:59.613 回答