开发者

In Grails, how do I return to the calling current view from a controller?

Below is a very simple controller with a "search" action that is fired from g:submitButton in a gsp file. My question is, instead of redirecting to the "index"开发者_JS百科 action and view, how do I return to the view that contained the submit button that called this controller's search action?

class DefaultSearchController {
    def searchableService

    def index = {
    }

    def search = {
        def query = params.query
        if(!query){
            redirect(action:"index", params:params)
        }

        try{
            def searchResults =  searchableService.searchEvery( query )
            redirect(action:"index", searchResults)
        }
        catch( e ){
            params.errors = "${e.toString()}"
            redirect(action: "index", params:params)
        }
    }
}


If the search action is going to be called from various places, I would pass in a parameter to it telling search controller where to redirect to or which view to render the search results with.

cheers

Lee

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜