我必须将操作模板呈现为一个简单的.txt
文件。
我该怎么做?除了使用Response
对象之外还有其他方法吗?
使用Response
对象:
$content = $this->get('templating')->render(
'AppBundle:Company:accountBillingInvoice.txt.twig',
[
'invoice' => 'This is the invoice'
]
);
$response = new Response($content , 200);
$response->headers->set('Content-Type', 'text/plain');
答案 0 :(得分:3)
我看不出使用Response
对象有什么问题 - 这很简单!
如果您想要从许多控制器操作中呈现文本响应,并且您不想重复自己,可以定义一些为您构建响应的服务类,例如:
class TextResponseRenderer
{
/** @var EngineInterface */
private $templating;
// constructor...
/**
* @param string $template The name of the twig template to be rendered.
* @param array $parameters The view parameters for the template.
* return Response The text response object with the content and headers set.
*/
public function renderTextResponse($template, array $parameters)
{
$content = $this->templating->render($template, $parameters);
$textResponse = new Response($content , 200);
$textResponse->headers->set('Content-Type', 'text/plain');
return $textResponse;
}
}
其他选项可能是为修改响应标头的kernel.response
编写一个监听器,但这可能会使事情变得过于复杂。查看更多信息here。