4

我在 silex 应用程序中使用 Twig。在预请求挂钩中,我想检查用户是否已登录以及他们是否将用户对象添加到 Twig(这样我就可以在菜单中呈现登录/注销状态)。

但是,查看源代码后,似乎只能将模板视图变量作为参数提供给 render 方法。我在这里错过了什么吗?

这正是我想要实现的目标:

// Code run on every request    

$app->before(function (Request $request) use ($app)
{
    // Check if the user is logged in and if they are
    // Add the user object to the view

    $status = $app['userService']->isUserLoggedIn();

    if($status)
    {
        $user = $app['userService']->getLoggedInUser();

        //@todo - find a way to add this object to the view 
        // without rendering it straight away
    }

});
4

4 回答 4

18
$app["twig"]->addGlobal("user", $user);
于 2012-04-11T19:04:54.350 回答
16

除了 Maerlyn 说的,你还可以这样做:

$app['user'] = $user;

在您的模板中使用:

{{ app.user }}
于 2012-04-15T11:10:06.763 回答
1

您可以使用twig->offsetSet(key, value)预渲染值

注册树枝助手时的示例

$container['view'] = function ($c) {
    $view = new \Slim\Views\Twig('.templatePath/');

    // Instantiate and add Slim specific extension
    $basePath = rtrim(str_ireplace('index.php', '', $c['request']->getUri()->getBasePath()), '/');
    $view->addExtension(new Slim\Views\TwigExtension($c['router'], $basePath));

    //array for pre render variables
    $yourPreRenderedVariables = array(
       'HEADER_TITLE' => 'Your site title',
       'USER'  => 'JOHN DOE'
    );
    //this will work for all routes / templates you don't have to define again
    foreach($yourPreRenderedVariables as $key => $value){
        $view->offsetSet($key, $value);
    }

    return $view; 
};

你可以像这样在模板上使用它

<title>{{ HEADER_TITLE }}</title>
hello {{ USER }},
于 2016-04-27T19:29:41.457 回答
0

Maerlyn 提供的答案是错误,因为没有必要使用addGlobal,因为该user对象已经存在于 twig 的环境全局变量中,如文档所述:

全局变量

当 Twig 桥可用时,全局变量引用AppVariable 的一个实例。它允许访问以下方法:

{# The current Request #}
{{ global.request }}

{# The current User (when security is enabled) #}
{{ global.user }}

{# The current Session #}
{{ global.session }}

{# The debug flag #}
{{ global.debug }}

Aso 根据文档,如果你想添加任何其他全局调用foo,例如,你应该这样做:

$app->extend('twig', function($twig, $app) {
    $twig->addGlobal('foo', 127);                    // foo = 127
    return $twig;
});

注册树枝服务后。

注册 twig 服务很简单:

$app->register(new Silex\Provider\TwigServiceProvider(), array(
    'twig.path' => __DIR__.'/views',
));
于 2016-11-09T06:29:35.063 回答