「rememberme」システムを実現するために、ログインコントローラ内にCookieを設定しようとしています。Webで見つけた正確なコードを使用しましたが、問題が発生しています。私が欠けているものを理解するのを手伝ってくれることを願っています。
コードを見てみましょう:
public function loginAction(Request $request) {
// Receiving the login form
// Get Doctrine, Get EntityManager, Get Repository
if(/* form information matche database information */) {
// Creating a session => it's OK
// Creating the cookie
$response = new Response();
$response->headers->setCookie(new Cookie("user", $user));
$response->send();
$url = $this->generateUrl('home');
return $this->redirect($url);
} else
return $this->render('***Bundle:Default:Login.html.php');
}
私はこれらを含めました:
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\Cookie;
ログインは正常に機能し、セッションは作成されていますが、Cookieは作成されていないことに注意してください。