12

从 Grails 1.3.7 迁移到 2.0.4 后,我注意到我的一个域类存在问题,我使用瞬态属性来处理密码。

我的域类看起来像这样(简化):

   package test

   class User {
String email 
String password1
String password2
//ShiroUser shiroUser

static constraints = {
    email(email:true, nullable:false, unique:true)
    password1(nullable:true,size:5..30, blank: false, validator: {password, obj ->

        if(password==null && !obj.properties['id']){
          return ['no.password']
        }
        else return true
      })
    password2(nullable:true, blank: false, validator: {password, obj ->
         def password1 = obj.properties['password1']

         if(password == null && !obj.properties['id']){
          return ['no.password']
        }
        else{
          password == password1 ? true : ['invalid.matching.passwords']
        }
      })

}
static transients = ['password1','password2']
   }

在 1.3.7 中,这曾经在我的 Bootstrap 中工作:

    def user1= new User (email: "test@test.com", password1: "123456", password2: "123456")
    user1.save()

但是,在 Grails 2.0.x 中,这将导致错误提示 password1 和 password2 都为空。如果我尝试这样做,我的控制器也会发生同样的事情:

    def user2= new User (params)// params include email,password1 and password2 

为了使其工作,我必须执行以下解决方法:

    def user2= new User (params)// params include email,password1 and password2 
    user2.password1=params.password1
    user2.password2=params.password2
    user2.save()

这很丑陋——而且很烦人。

谁能说我对瞬态的使用在 grails 2.x 中是否无效,或者这可能是某种框架错误?

4

2 回答 2

15

出于安全原因,瞬态不再自动绑定。但是您可以通过添加“可绑定”约束轻松使其工作(请参阅http://grails.org/doc/latest/ref/Constraints/bindable.html)。改变

password2(nullable:true, blank: false, validator: {password, obj ->

password2(bindable: true, nullable:true, blank: false, validator: {password, obj ->
于 2012-07-02T17:09:42.350 回答
3

我认为作为 grails 2.x 中数据绑定改进的一部分 - 它不会绑定瞬态属性。

于 2012-07-02T16:20:19.833 回答