0

我正在寻找一种简单的方法来使用脚手架禁用 gorm 模型中仅一列的排序链接,但在这方面还没有发现任何东西。

就像是

static constraints = {
    entryDate(nullable: false, blank: false, sortable: false)
}

这在gorm中可能吗?

4

1 回答 1

2

您可以定义自己的属性并自定义脚手架模板。

自定义属性:

static constraints = {
    entryDate(nullable: false, blank: false, attributes: [sortable: false])
}

自定义脚手架模板可能如下所示:

props.eachWithIndex { p, i ->
cp = domainClass.constrainedProperties[p.name]
if (p.isAssociation() || (cp.attributes?.sortable != null && !cp.attributes.sortable) ) { %>
于 2013-04-18T14:15:51.793 回答