虽然移动contact_email
到的解决方案parameters.yml
很容易,正如其他答案中所建议的那样,但如果您处理许多捆绑包或处理嵌套的配置块,这很容易使您的参数文件变得混乱。
- 首先,我将严格回答这个问题。
- 稍后,我将给出一种从服务中获取这些配置的方法,而无需通过公共空间作为参数传递。
第一种方法:分离的配置块,将其作为参数
使用扩展(更多关于扩展在这里),您可以轻松地将其“分离”到不同的块中config.yml
,然后将其作为可从控制器获取的参数注入。
在目录内的 Extension 类中DependencyInjection
写入以下内容:
class MyNiceProjectExtension extends Extension
{
public function load( array $configs, ContainerBuilder $container )
{
// The next 2 lines are pretty common to all Extension templates.
$configuration = new Configuration();
$processedConfig = $this->processConfiguration( $configuration, $configs );
// This is the KEY TO YOUR ANSWER
$container->setParameter( 'my_nice_project.contact_email', $processedConfig[ 'contact_email' ] );
// Other stuff like loading services.yml
}
然后在你的 config.yml、config_dev.yml 等你可以设置
my_nice_project:
contact_email: someone@example.com
为了能够在您的config.yml
内部处理它,您MyNiceBundleExtension
还需要Configuration
在同一命名空间中的一个类:
class Configuration implements ConfigurationInterface
{
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root( 'my_nice_project' );
$rootNode->children()->scalarNode( 'contact_email' )->end();
return $treeBuilder;
}
}
然后,您可以根据原始问题中的需要从控制器获取配置,但要保持parameters.yml
清洁,并将其设置config.yml
在单独的部分中:
$recipient = $this->container->getParameter( 'my_nice_project.contact_email' );
第二种方法:分离配置块,将配置注入服务
对于寻找类似但从服务中获取配置的读者来说,甚至有一种更好的方法,它永远不会弄乱“参数”公共空间,甚至不需要container
传递给服务(传递整个容器是练习避免)。
上面的这个技巧仍然“注入”到你的配置的参数空间中。
尽管如此,在加载了服务的定义之后,您可以添加一个方法调用,例如setConfig()
,仅将该块注入服务。
例如,在 Extension 类中:
class MyNiceProjectExtension extends Extension
{
public function load( array $configs, ContainerBuilder $container )
{
$configuration = new Configuration();
$processedConfig = $this->processConfiguration( $configuration, $configs );
// Do not add a paramater now, just continue reading the services.
$loader = new YamlFileLoader( $container, new FileLocator( __DIR__ . '/../Resources/config' ) );
$loader->load( 'services.yml' );
// Once the services definition are read, get your service and add a method call to setConfig()
$sillyServiceDefintion = $container->getDefinition( 'my.niceproject.sillymanager' );
$sillyServiceDefintion->addMethodCall( 'setConfig', array( $processedConfig[ 'contact_email' ] ) );
}
}
然后在你的services.yml
你像往常一样定义你的服务,没有任何绝对的改变:
services:
my.niceproject.sillymanager:
class: My\NiceProjectBundle\Model\SillyManager
arguments: []
然后在你的SillyManager
类中,添加方法:
class SillyManager
{
private $contact_email;
public function setConfig( $newConfigContactEmail )
{
$this->contact_email = $newConfigContactEmail;
}
}
请注意,这也适用于数组而不是标量值!想象一下,你配置了一个兔子队列,需要主机、用户和密码:
my_nice_project:
amqp:
host: 192.168.33.55
user: guest
password: guest
当然你需要改变你的树,但是你可以这样做:
$sillyServiceDefintion->addMethodCall( 'setConfig', array( $processedConfig[ 'amqp' ] ) );
然后在服务中做:
class SillyManager
{
private $host;
private $user;
private $password;
public function setConfig( $config )
{
$this->host = $config[ 'host' ];
$this->user = $config[ 'user' ];
$this->password = $config[ 'password' ];
}
}
希望这可以帮助!