gpt4 book ai didi

grails - grails View 中未显示“dateCreated”字段

转载 作者:行者123 更新时间:2023-12-02 16:00:12 24 4
gpt4 key购买 nike

我正在学习Grails(grails-2.3.7),并开始阅读《 GettingStartedwithGrailsFinalInfoQ》一书。我的域名类(class)内容是:

package grailsdemo

class Registration {

String name
Date dateOfBirth
String gender
String address
String city
String state
String zipcode
String email
Date dateCreated //Note: this is a special name

static constraints = {

}

static belongsTo = [race:Race]

static mapping = {
autoTimestamp false
}
}

相应的Controller类代码为:
   package grailsdemo

class RegistrationController {

def scaffold = true
}

问题在于 View 中未显示字段“dateCreated”。
本书示例中使用了相同的代码。
我的观点: enter image description here

书本 View : enter image description here

最佳答案

这本书很老,使用Grails 1.2。
dateCreated,lastUpdated,id和version都是Grails中的特殊字段,在脚手架 View 中均是如此。

您可以看到在运行grails generate-all grailsdemo.Registration时脚手架的代码的样子。
针对您使用的特定Grails版本。

对于使用grails 2.3.7的最新书籍,我可以推荐Glen Smith和Peter Ledbrook撰写的“Grails in Action”

关于grails - grails View 中未显示“dateCreated”字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32178557/

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