【发布时间】:2014-07-20 02:48:09
【问题描述】:
我按照 yii2 文档中关于使用 twig 模板引擎的说明进行操作
在 config/web.php(包含在 index.php 中)我有:
'view' => [
'class' => 'yii\web\View',
'renderers' => [
'twig' => [
'class' => 'yii\twig\ViewRenderer',
'cachePath' => '@runtime/Twig/cache',
'options' => ['auto_reload' => true], /* Array of twig options */
'globals' => ['html' => '\yii\helpers\Html'],
],
],
],
在 SiteController.php 中:
public function actionIndex()
{
echo $this->render('index.twig');
}
在 views/site/index.twig 我有一些文字:
但我看到的不是原始 html,而是基于 views/layouts/main.php 的模板,其中 index.twig 内容在主布局中用作变量。
【问题讨论】: