0

我对 Typo3 Neos 上的示例站点有疑问。有创建一个帐户,我在后端对其进行了测试。提交后,页面再次返回后台。但是当我尝试制作这样的表格时,返回目标是路由,而不是后端。我怎样才能获得与示例相同的回报?

即使我已经实现了与示例相同的代码。

$uriBuilder = new UriBuilder(); 
$uriBuilder->setRequest($this->request->getParentRequest()); 
$redirectUri = $uriBuilder ->setCreateAbsoluteUri(TRUE)
                           ->uriFor('index', array('username' => $accountIdentifier), 'Login', 'TYPO3.Neos'); 
$this->redirectToUri($redirectUri);

编辑:我从“动作”中得到一个错误,他试图做的路径是“ http://domain/Route/Action/ ”,应该只是“动作”。介意解释吗?

任何帮助将非常感激。:)

4

1 回答 1

0

得到了答案

$this->redirect("youraction");

谢谢!

于 2015-02-17T11:06:22.883 回答