0

我有以下内容:

class Img {
  static constraints = {
    imageSize(nullable: true, maxSize: 1000)
  }
}

我想在我的程序中将 imageSize 变量的 maxSize 更改为其他值,我尝试了这个但它没有用:

def img = new Img()
images.imageSize.maxSize = 800

编辑:

class Img {
  byte[] imageSize

  static constraints = {
    imageSize(nullable: false, maxSize: 1000)
  }
}
4

1 回答 1

0

试试这样:

ConstrainedProperty constrainedProperty = Img.constraints.imageSize
constrainedProperty.setMaxSize(800)
于 2013-06-24T20:44:30.500 回答