我尝试增强我的一个包扩展,它加载我的YAML配置文件,我必须访问内核类才能使用方法locateResource()
。
目标是在不使用以下情况下加载资源文件:
__DIR__ . '/../Resources/config'
扩展类看起来像这样:
class InnovaPathExtension extends Extension
{
/**
* Base path to the config directory of the bundle
* @var unknown
*/
const CONFIG_PATH = '@InnovaPathBundle/Resources/config/';
/**
* List of needed config files
* @var array
*/
protected $filesToLoad = array (
// Services
'services/services.yml',
'services/listeners.yml',
'services/managers.yml',
'services/controllers.yml',
// Parameters
'parameters.yml',
);
/**
* @see \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::load()
*/
public function load(array $configs, ContainerBuilder $container)
{
foreach ($this->filesToLoad as $file) {
// Check if resources exists
try {
$resource = static::CONFIG_PATH . $file;
$filePath = $container->get('kernel')->locateResource($resource);
} catch (\InvalidArgumentException $e) {
throw new \InvalidArgumentException(sprintf('Unable to load "%s"', $resource), 0, $e);
}
// TODO : Load resource
}
return $this;
}
}
指令$container->get('kernel')
抛出异常'服务定义“内核”不存在。
如果我检查了$container->getServiceIds()
注册的所有服务,我找到的唯一服务是service_container
。
没问题,我抓住服务容器并使用$container->get('service_container')->getServiceIds()
检查服务......我只获得一项服务:service_container
。
我无法理解为什么......是DI-CEPTION吗?
答案 0 :(得分:0)
推荐方式是:
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
use Symfony\Component\Config\FileLocator;
public function load(array $configs, ContainerBuilder $container)
{
$loader = new YamlFileLoader(
$container,
new FileLocator(__DIR__.'/../Resources/config')
);
foreach ($this->filesToLoad as $file) {
$loader->load($file);
}
}
不建议采用其他方式。