Slim 2 Render Direct HTML

时间:2017-04-15 00:41:49

标签: php twig slim slim-2

我有一个旧项目,我正在使用Slim版本2.我无法升级到3。

我正在尝试将twig整合到slim 2 中,同时保留旧的默认slim2渲染器。

目前我有这个。

class TwigView extends \Slim\View
{
    public function rendertwig($template,$data = array()){
        global $twig;

        $twigResults = $twig->render($template,array('test' => '1'));

        $data = array_merge($this->data->all(), $data);
        return $this->render($twigResults, $data);
    }  

}

$view = new TwigView();

$config['view'] = $view; //@JA - This command overides the default render method.

//@JA - Intialize Slim
$app = new \Slim\Slim($config);

我的想法是,当我需要渲染树枝模板并将$app->view->rendertwig('file.twig')用于使用默认slim2模板方法的所有其他模板时,我会称之为$app->render('template.php')

但是,我收到错误,因为在我的rendertwig函数中,$ this-> render()函数需要第一个参数的模板名称。 有没有办法可以直接将twig的结果渲染到苗条引擎而不需要模板文件?

我知道这是一个糟糕的形式,有两个模板引擎,但最终我会把所有切换到Twig,但我需要这个作为临时解决方案,直到我可以修补一切。

当我检查slim的视图对象时,它定义为它的渲染方法,它将解释这个问题。

protected function render($template, $data = null)
    {
        $templatePathname = $this->getTemplatePathname($template);
        if (!is_file($templatePathname)) {
            throw new \RuntimeException("View cannot render `$template` because the template does not exist");
        }

        $data = array_merge($this->data->all(), (array) $data);
        extract($data);
        ob_start();
        require $templatePathname;

        return ob_get_clean();
    }

1 个答案:

答案 0 :(得分:0)

我不知道这是不是坏形式,但我这是一个临时解决方案。

class TwigView extends \Slim\View
{
    public function rendertwig($template,$data = array()){
        global $twig;

        $twigResults = $twig->render($template,array('test' => '1'));
        echo $twigResults;
    }  

}

我看到所有渲染方法都只需要模板,所以我认为它可以安全地回显来自树枝模板引擎的结果?这似乎与我的测试有关。