“Redirecionar em Grails” Respostas de código

Redirecionar em Grails

class TestController {
   def firstAction() {
      redirect(action: "secondAction")
   }	
   def secondAction() {
      render "You were redirected from firstAction to secondAction"
   }
}
Silly Sandpiper

Redirecionar em Grails

def auth()
{
    if (!params.username.empty)
    {
  redirect  (controller: "manageLicences" , action:"checkLicense")
     }
}
Silly Sandpiper

Respostas semelhantes a “Redirecionar em Grails”

Procure respostas de código populares por idioma

Procurar outros idiomas de código