2

我想用 twig 从 symfony2 控制器生成文件文本。

与普通的 html 模板一样,但使用纯文本,并将文件保存在某处。

可能吗 ?

4

2 回答 2

5

终于明白了。

我想生成 bash 脚本。

  1. 在正确的位置创建模板,例如

    myBundle/Resources/views/MyController/mytemplate.sh.twig
    
  2. 在 ScriptGenerator 类中

    // Load the template
    $template = $this->twig->loadTemplate('myBundle:MyController:mytemplate.sh.twig');
    // Render the whole template
    $script = $template->render($parameters);
    
  3. 在你想使用它的地方,放置这个代码。

    namespace myproject\myBundle\Controller;
    
    use Symfony\Bundle\FrameworkBundle\Controller\Controller;
    
    use myproject\myBundle\Generator\ScriptGenerator;
    
    class myController extends Controller
    {
        public function myAction()
        {
            $twig = $this->get('twig');
            $generator = new ScriptGenerator($twig);
            $parameters = array(
                'a parameter' => "whatever"
            );
            $script = $generator->setScript($parameters);
    
            file_put_contents('whereyouwant',$script);
    
            ...
        }
    }
    
于 2013-04-29T07:24:34.693 回答
2

是的,这是可以做到的。您必须在路线定义 (.txt) 中输入正确的格式

您还必须设置正确的Content-Type标题,

   $response->headers->set('Content-Type', 'text/plain');

事实上,Response 对象通常填充 HTML 代码,但它也可以包含纯文本(带有 text/plain 的 Content-Type 标头)、图像或其他格式。

您还应该在模板名称上使用正确的格式,

XXXYourBundle:XXXX:temlate_name.txt.twig // In case you're using Twig as a templating Engine
于 2013-04-25T15:25:40.150 回答