"Fossies" - the Fresh Open Source Software Archive

Member "grails-core-6.0.0/grails-docs/src/test/resources/docs/ref/Controllers/actionName.html" (24 Jul 2023, 58873 Bytes) of package /linux/www/grails-core-6.0.0.tar.gz:


Caution: In this restricted "Fossies" environment the current HTML page may not be correctly presentated and may have some non-functional links. You can here alternatively try to browse the pure source code or just view or download the uninterpreted raw source code. If the rendering is insufficient you may try to find and view the page on the grails-core-6.0.0.tar.gz project site itself.

(Quick Reference)

actionName

Purpose

Returns the name of the currently executing action.

Examples

class BookController {
    def list() {
        log.info "Executing action $actionName"

        render(view: actionName)
    }
}

Description

Returns the name of the currently executing action which is dictated by the URL mappings