symfony 2如何在重定向时发送数据
我从数据库中获取一个对象,然后我想重定向到另一个控制器并将该对象发送到那里:
$user = $this->getDoctrine()->getRepository('ShopMyShopBundle:Register')->find($id);
return $this->redirect($this->generateUrl('ShopMyShopBundle_homepage'), array('user' => $user));
如何在重定向后获取对象并将其发送到另一个控制器函数中的模板,如下所示:
public function indexAction()
{
return $this->render('ShopMyShopBundle:Main:index.html.twig');
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法通过重定向发送对象。您可以做的是发送其唯一属性之一(可能是主键)并再次从数据库中获取它。就您而言,它可能是用户 ID 或昵称。
由于类型提示,将从数据库自动获取用户 通过它的昵称。
You can't send an object via a redirect. What you can do is send one of its unique properties (probably the primary key) and fetch it from the database again. In your case, it could be a user ID or nickname.
Thanks to the type hinting, the user will be fetched from the database automatically by its nickname.