0

在发送电子邮件的某个功能之后,我无法重定向!我的功能是:

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 行中检测到新行

  1. 在 C:\path\to\webroot\Symfony\app\cache\dev\classes.php 第 3899 行
  2. 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)))
  3. 在标题('位置:缓存控制:无缓存日期:格林威治标准时间 2013 年 7 月 17 日星期三 11:56:17 位置:/app_dev.php/blog',false)在 C:\path\to\webroot\Symfony\ app\cache\dev\classes.php 第 3899 行
  4. 在 C:\path\to\webroot\Symfony\app\cache\dev\classes.php 第 3914 行中的 Response->sendHeaders()
  5. 在 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,页面就会加载!

我不知道这个错误是什么以及我应该如何解决它!

4

2 回答 2

0

你触发了 Symfony 的健全性检查。使用 发送标头时header(),理论上您可以通过一个函数调用发送大量标头。Symfony 可以防止您在传递带有换行符的内容作为目标 URL 时意外执行此操作。

于 2013-07-17T12:17:45.007 回答
0

详细地说,您的问题是$this->newpostAction(). 通常它是一个Response对象。但是重定向需要一个 uri/route,它可以通过Locationheader 发送给客户端。重定向始终是客户端转身。但是您可以使用->forward('AcmeBundle:Demo:index')内部转发到另一个控制器操作。在这种情况下,客户端上的 URL 不会更改。

于 2013-07-18T12:27:07.027 回答