如果您不想在数据库中显示任何域字段(int status),该怎么办。圣杯
What to do if you don't want any domain field to be displayed(int status) in DB. Grails
class 书 {
String title
String name
int status
}
如果您不希望 grails 在数据库中创建 status 字段,您可以将 static transients = ['status']
添加到 class.
class Book {
String title
String name
int status
static transients = ['status']
}
如果想将状态保存到数据库,但又不想让Scaffold在屏幕上显示状态,可以在containts中使用status display: false
。
class Book {
String title
String name
int status
static constraints = {
status display: false
}
}
class 书 {
String title
String name
int status
}
如果您不希望 grails 在数据库中创建 status 字段,您可以将 static transients = ['status']
添加到 class.
class Book {
String title
String name
int status
static transients = ['status']
}
如果想将状态保存到数据库,但又不想让Scaffold在屏幕上显示状态,可以在containts中使用status display: false
。
class Book {
String title
String name
int status
static constraints = {
status display: false
}
}