我想用 twig 从 symfony2 控制器生成文件文本。
与普通的 html 模板一样,但使用纯文本,并将文件保存在某处。
可能吗 ?
终于明白了。
我想生成 bash 脚本。
在正确的位置创建模板,例如
myBundle/Resources/views/MyController/mytemplate.sh.twig
在 ScriptGenerator 类中
// Load the template
$template = $this->twig->loadTemplate('myBundle:MyController:mytemplate.sh.twig');
// Render the whole template
$script = $template->render($parameters);
在你想使用它的地方,放置这个代码。
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);
...
}
}
是的,这是可以做到的。您必须在路线定义 (.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