Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在不丢失当前请求数据的情况下转发(或重定向)到 sfDoctrineRoute。
我的问题是,当我使用 forward 时,路由没有正确执行,所以像 $form->getObject() 这样的东西不起作用。但是如果我重定向到 URL,我会丢失所有的请求数据......
为什么不通过重定向传递请求参数?
$this->redirect('@someroute?params='.$params);