基础解释看文章
http://blog.csdn.net/m0sh1/article/details/40678141
的前半部分,后半部分 magento 中出现这个问题的解决办法
这次的才是正解 ╮(╯3╰)╭
写 magento 前端样式的时候有时候需要用到 ajax,发送请求到controller 然后controller 直接返回数据
例如 echo ‘Simael’;
这个时候通常会在log文件中看到日志提示:DEBUG (7): HEADERS ALREADY SENT: …
这是因为在 magento中response 都是通过response object 这个对象输出到浏览器,你虽然只是 echo 一个字符串
但是系统在这之后仍有去设置 headers 的操作导致错误发生。
最简单的解决办法就是添加 exit;
echo 'Simael';
exit;
另一种办法:
$output = 'Simael';
$this->getResponse()->setBody($output );
或者更完整的设置
$this->getResponse()
->clearHeaders()
->setHeader('Content-Type', 'text/html')
->setBody('Some Response');
这样问题就解决了
此文章通过 python 爬虫创建,原文是自己的csdn 地址: Headers already sent