我正在尝试编辑 grails 脚手架模板以在 create.gsp 和 edit.gsp 中创建单个字段
如果我在 create.gsp 中添加以下内容
<%
def d = new grails.core.GrailsDomainClass (collegeapplication.Student.class)
d.persistentProperties.each {
%>
${it}
<%
}
%>
我得到 unable to resolve class grails.core.GrailsDomainClass
就此而言,我无法使用 Groovy 中列出的任何常用方法来加载我的任何域类,以从 String
或Get domain class field names动态实例化一个类
有任何想法吗?
我想要的最终结果不是
我想要为每个属性<f:all bean="parentsInfomormation"/>
生成的 generate-all 命令
<f:field bean="person" property="name"/>