从数据库中获取枝杈

从数据库中获取枝杈

本文介绍了从数据库中获取枝杈的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想要得到数据库中的全球数据,可以吗?

 #app / config / parameters。 yml 

twig:
全局变量:
siteName:'这里来自数据库的站点名称'


解决方案

您可以创建一个TwigExtension(和),注入EntityManager并注册全局变量。


i Want to get the get the twig Globals from the DataBase , Can I ?

# app/config/parameters.yml

    twig:
        globals:
            siteName: 'here site name from database'
解决方案

You can create a TwigExtension (http://symfony.com/doc/current/cookbook/templating/twig_extension.html and http://twig.sensiolabs.org/doc/advanced.html#creating-an-extension), Inject the EntityManager in it and register the globals there.

这篇关于从数据库中获取枝杈的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 04:10