“Przekieruj w Grails” Kod odpowiedzi

Przekieruj w Grails

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

Przekieruj w Grails

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

Odpowiedzi podobne do “Przekieruj w Grails”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu