Symfony 4 redirectToRoute dont send parameters with Post method
up vote
0
down vote
favorite
The redirectToRoute method don't send the parameters to the other route
PS : i use the POST method
First route:
/**
* @Route("/CheckAuthentification",name="security_authentification")
*/
public function authentification(Request $request)
*
*
*
return $this->redirectToRoute('profil', ['categories'=>$categories,'user'=>$user]);
Second route:
/**
* @Route("/Profil",name="Profil_page")
*/
public function profil($categories,$user)
return $this->render('user/profil.html.twig',['categories'=>$categories,'user'=>$user]);
Error :
Controller "AppControllerProfilController::profil()" requires that
you provide a value for the "$categories" argument. Either the
argument is nullable and no null value has been provided, no default
value has been provided or because there is a non optional argument
after this one.
symfony4
add a comment |
up vote
0
down vote
favorite
The redirectToRoute method don't send the parameters to the other route
PS : i use the POST method
First route:
/**
* @Route("/CheckAuthentification",name="security_authentification")
*/
public function authentification(Request $request)
*
*
*
return $this->redirectToRoute('profil', ['categories'=>$categories,'user'=>$user]);
Second route:
/**
* @Route("/Profil",name="Profil_page")
*/
public function profil($categories,$user)
return $this->render('user/profil.html.twig',['categories'=>$categories,'user'=>$user]);
Error :
Controller "AppControllerProfilController::profil()" requires that
you provide a value for the "$categories" argument. Either the
argument is nullable and no null value has been provided, no default
value has been provided or because there is a non optional argument
after this one.
symfony4
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
The redirectToRoute method don't send the parameters to the other route
PS : i use the POST method
First route:
/**
* @Route("/CheckAuthentification",name="security_authentification")
*/
public function authentification(Request $request)
*
*
*
return $this->redirectToRoute('profil', ['categories'=>$categories,'user'=>$user]);
Second route:
/**
* @Route("/Profil",name="Profil_page")
*/
public function profil($categories,$user)
return $this->render('user/profil.html.twig',['categories'=>$categories,'user'=>$user]);
Error :
Controller "AppControllerProfilController::profil()" requires that
you provide a value for the "$categories" argument. Either the
argument is nullable and no null value has been provided, no default
value has been provided or because there is a non optional argument
after this one.
symfony4
The redirectToRoute method don't send the parameters to the other route
PS : i use the POST method
First route:
/**
* @Route("/CheckAuthentification",name="security_authentification")
*/
public function authentification(Request $request)
*
*
*
return $this->redirectToRoute('profil', ['categories'=>$categories,'user'=>$user]);
Second route:
/**
* @Route("/Profil",name="Profil_page")
*/
public function profil($categories,$user)
return $this->render('user/profil.html.twig',['categories'=>$categories,'user'=>$user]);
Error :
Controller "AppControllerProfilController::profil()" requires that
you provide a value for the "$categories" argument. Either the
argument is nullable and no null value has been provided, no default
value has been provided or because there is a non optional argument
after this one.
symfony4
symfony4
edited Nov 12 at 1:14
Dirk J. Faber
1,0401217
1,0401217
asked Nov 10 at 3:45
wipat
12
12
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
The solution is to send the objects in the session
First route :
$this->container->get('session')->set('user', $user);
$this->container->get('session')->set('categories', $categories);
return $this->redirectToRoute('profil');
Second route :
$user = $this->container->get('session')->get('user');
$categories = $this->container->get('session')->get('categories');
return $this->render('user/profil.html.twig',['categories'=>$categories,'user'=>$user]);
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
The solution is to send the objects in the session
First route :
$this->container->get('session')->set('user', $user);
$this->container->get('session')->set('categories', $categories);
return $this->redirectToRoute('profil');
Second route :
$user = $this->container->get('session')->get('user');
$categories = $this->container->get('session')->get('categories');
return $this->render('user/profil.html.twig',['categories'=>$categories,'user'=>$user]);
add a comment |
up vote
0
down vote
accepted
The solution is to send the objects in the session
First route :
$this->container->get('session')->set('user', $user);
$this->container->get('session')->set('categories', $categories);
return $this->redirectToRoute('profil');
Second route :
$user = $this->container->get('session')->get('user');
$categories = $this->container->get('session')->get('categories');
return $this->render('user/profil.html.twig',['categories'=>$categories,'user'=>$user]);
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
The solution is to send the objects in the session
First route :
$this->container->get('session')->set('user', $user);
$this->container->get('session')->set('categories', $categories);
return $this->redirectToRoute('profil');
Second route :
$user = $this->container->get('session')->get('user');
$categories = $this->container->get('session')->get('categories');
return $this->render('user/profil.html.twig',['categories'=>$categories,'user'=>$user]);
The solution is to send the objects in the session
First route :
$this->container->get('session')->set('user', $user);
$this->container->get('session')->set('categories', $categories);
return $this->redirectToRoute('profil');
Second route :
$user = $this->container->get('session')->get('user');
$categories = $this->container->get('session')->get('categories');
return $this->render('user/profil.html.twig',['categories'=>$categories,'user'=>$user]);
answered Nov 10 at 14:20
wipat
12
12
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53235829%2fsymfony-4-redirecttoroute-dont-send-parameters-with-post-method%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown