在发送电子邮件的某个功能之后,我无法重定向!我的功能是:
public function emailAction($emails, $url)
{
foreach($emails as $email)
{
$message = \Swift_Message::newInstance()
->setSubject('Updates in Symfony Blog')
->setFrom(array('blog@symfonyblog.com' => 'Symfony Blog'))
->setTo($email["email"])
->setBody(
$this->renderView(
'NEWSBlogBundle:Default:email.txt.twig',
array('url' => $url)
)
)
;
$this->get('mailer')->send($message);
}
return $this->redirect($this->newpostAction());
//return $this->redirect($this->generateUrl('NEWSBlogBundle_homepage'));
}
它可以发送电子邮件,但是在重定向时会出现错误:
ErrorException:警告:标头可能不包含多个标头,在 C:\path\to\webroot\Symfony\app\cache\dev\classes.php 第 3899 行中检测到新行
- 在 C:\path\to\webroot\Symfony\app\cache\dev\classes.php 第 3899 行
- at ErrorHandler->handle('2', '标头不能包含多个标头,检测到新行', 'C:\path\to\webroot\Symfony\app\cache\dev\classes.php', ' 3899', array('this' => object(RedirectResponse), 'name' => 'Location', 'values' => array('/app_dev.php/blog', object(ResponseHeaderBag), ' 重定向到 /app_dev .php/blog 重定向到/app_dev.php/blog .', '1.0', '302', 'Found', null), 'value' => object(ResponseHeaderBag)))
- 在标题('位置:缓存控制:无缓存日期:格林威治标准时间 2013 年 7 月 17 日星期三 11:56:17 位置:/app_dev.php/blog',false)在 C:\path\to\webroot\Symfony\ app\cache\dev\classes.php 第 3899 行
- 在 C:\path\to\webroot\Symfony\app\cache\dev\classes.php 第 3914 行中的 Response->sendHeaders()
- 在 C:\path\to\webroot\Symfony\web\app_dev.php 第 27 行中的 Response->send()
虽然我没有更改任何“标题”的任何内容(并且真的不知道它是关于什么的!)。我的 app_dev.php 是:
<?php
use Symfony\Component\HttpFoundation\Request;
if (isset($_SERVER['HTTP_CLIENT_IP'])
|| isset($_SERVER['HTTP_X_FORWARDED_FOR'])
|| !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1'))
) {
header('HTTP/1.0 403 Forbidden');
exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
}
$loader = require_once __DIR__.'/../app/bootstrap.php.cache';
require_once __DIR__.'/../app/AppKernel.php';
$kernel = new AppKernel('dev', true);
$kernel->loadClassCache();
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
我尝试了两种不同的重定向方式(通过路由和直接调用控制器),它们给出了相同的错误,而如果我输入他们的 url,页面就会加载!
我不知道这个错误是什么以及我应该如何解决它!