重定向后如何为请求重定向和存储数据
How to redirect and store data for the request after the redirect
我正在尝试将用户重定向到带有错误和闪现消息的登录页面。
目前我正在这样做:
return $this->container->view->render($response,'admin/partials/login.twig',['errorss'=>$errors]);
但我想重定向到登录页面,同时仍然有错误消息和闪现消息。我尝试过这种方式但不起作用:
$this->container->flash->addMessage('fail',"Please preview the errors and login again.");
return $response->withRedirect($this->container->router->pathFor('admin.login',['errors'=>$errors]));
您已经使用过 slim/flash
,但后来您这样做了:
return $response->withRedirect($this->container->router->pathFor('admin.login',['errors'=>$errors]));
这是不正确的。 Router#pathFor()
方法的第二个参数不是用于重定向后使用的数据
The router’s pathFor() method accepts two arguments:
- The route name
- Associative array of route pattern placeholders and replacement values
来源 (http://www.slimframework.com/docs/objects/router.html)
所以你可以用第二个参数设置占位符,比如profile/{name}
。
现在您需要将错误全部添加到 slim/flash
`。
我在修改后的 Usage Guide of slim/flash
上解释这个
// can be 'get', 'post' or any other method
$app->get('/foo', function ($req, $res, $args) {
// do something to get errors
$errors = ['first error', 'second error'];
// store messages for next request
foreach($errors as $error) {
$this->flash->addMessage('error', $error);
}
// Redirect
return $res->withStatus(302)->withHeader('Location', $this->router->pathFor('bar'));
});
$app->get('/bar', function ($request, $response, $args) {
// Get flash messages from previous request
$errors = $this->flash->getMessage('error');
// $errors is now ['first error', 'second error']
// render view
$this->view->render($response, 'admin/partials/login.twig', ['errors' => $errors]);
})->setName('bar');
我正在尝试将用户重定向到带有错误和闪现消息的登录页面。
目前我正在这样做:
return $this->container->view->render($response,'admin/partials/login.twig',['errorss'=>$errors]);
但我想重定向到登录页面,同时仍然有错误消息和闪现消息。我尝试过这种方式但不起作用:
$this->container->flash->addMessage('fail',"Please preview the errors and login again.");
return $response->withRedirect($this->container->router->pathFor('admin.login',['errors'=>$errors]));
您已经使用过 slim/flash
,但后来您这样做了:
return $response->withRedirect($this->container->router->pathFor('admin.login',['errors'=>$errors]));
这是不正确的。 Router#pathFor()
方法的第二个参数不是用于重定向后使用的数据
The router’s pathFor() method accepts two arguments:
- The route name
- Associative array of route pattern placeholders and replacement values
来源 (http://www.slimframework.com/docs/objects/router.html)
所以你可以用第二个参数设置占位符,比如profile/{name}
。
现在您需要将错误全部添加到 slim/flash
`。
我在修改后的 Usage Guide of slim/flash
上解释这个// can be 'get', 'post' or any other method
$app->get('/foo', function ($req, $res, $args) {
// do something to get errors
$errors = ['first error', 'second error'];
// store messages for next request
foreach($errors as $error) {
$this->flash->addMessage('error', $error);
}
// Redirect
return $res->withStatus(302)->withHeader('Location', $this->router->pathFor('bar'));
});
$app->get('/bar', function ($request, $response, $args) {
// Get flash messages from previous request
$errors = $this->flash->getMessage('error');
// $errors is now ['first error', 'second error']
// render view
$this->view->render($response, 'admin/partials/login.twig', ['errors' => $errors]);
})->setName('bar');