简体   繁体   中英

grails access controller from taglib

Is it possible to access the current controller instance from within a TagLib? For example:

class FooTagLib {
    static namespace = 'foo'

    def msg = { attrs, body ->          
      // Can I get a reference to the current controller here?
    }
}

I want to do this because I store some data in a property of the controller and want to access it within the TagLib. I realise this may sound strange, but just humour me....

Inside your msg tagLib:

grailsApplication.getArtefactByLogicalPropertyName('Controller', pageScope.controllerName)

Like Views, you have access to the current controller and action through controllerName and actionName

试试这样的东西...

def ctl = grailsApplication.getArtefactByLogicalPropertyName('Controller', 'whateverController') 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM