gpt4 book ai didi

grails - 在Grails应用程序中从无渲染域类属性插入数据

转载 作者:行者123 更新时间:2023-12-02 14:40:43 25 4
gpt4 key购买 nike

我尝试从域类中将数据插入到数据库中,但是我只需要呈现两个域类属性,并在数据库中插入其余属性的默认值即可。我怎样才能做到这一点?我尝试为什么使用静态映射,但没有将数据插入数据库。接下来是我的域类代码:

class Syncronization {
String name
String url
String startTime
String lastSyncTime=null
Integer cont

static mapping = {
startTime defaultValue: "'20000101T00:00:00'"
cont defaultValue: 0
}

static constraints = {

name(blank: false)
url(blank: false)
startTime nullable: true
lastSyncTime nullable: true
cont nullable: true
}
}

create.gsp中,我仅渲染 nameurl字段,其他字段需要设置默认值。提前致谢

最佳答案

干得好:

class Syncronization {
String name
String url
String startTime = "20000101T00:00:00"
String lastSyncTime = null
Integer cont = 0

static constraints = {
name(blank: false)
url(blank: false)
startTime nullable: true
lastSyncTime nullable: true
cont nullable: true
}
}

关于grails - 在Grails应用程序中从无渲染域类属性插入数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37370423/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com