我需要将一个参数发送到文件renderEditor.template(在安装“grails install-templates”之后),但是我不知道如何。谁能帮我?谢谢。

最佳答案

renderEditor.template可用的绑定(bind)变量在DefaultGrailsTemplateGenerator中已修复

    def binding = [pluginManager: pluginManager,
                   property: property,
                   domainClass: domainClass,
                   cp: cp,
                   domainInstance:getPropertyName(domainClass)]
domainClassGrailsDomainClassproperty是在脚手架模板中传递给GrailsDomainClassProperty调用的renderEditor(p),而cp是相应的ConstrainedProperty。您可能能够从其中之一中提取所需的内容。

关于grails - GRAILS:将参数发送到renderEditor.template,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14503747/

10-11 03:12