0
後請求存儲數據我想將用戶重定向到有錯誤的登錄頁面和提示信息。如何重定向和重定向
目前我在做這個:
return $this->container->view->render($response,'admin/partials/login.twig',['errorss'=>$errors]);
但我想重定向到登錄頁面,同時還具有errror消息和提示信息。我想這樣,但不工作:
$this->container->flash->addMessage('fail',"Please preview the errors and login again.");
return $response->withRedirect($this->container->router->pathFor('admin.login',['errors'=>$errors]));
expaining此謝謝@jmattheis,我也看看修身文檔,但無法理解,因爲我是掃描重定向包括數據(知道我應該避免只掃描)。但現在我明白了它的工作方式..再次感謝:) .. – ryan