Symfony 3.4 在我的包中使用视图
Symfony 3.4 Use view inside my bundle
我在使用 Symfony 3.4 配置新存储库时遇到了一些麻烦。我使用 symfony 命令在上一个 LTS (3.4) 中创建了他,我也使用命令添加了一个新的 Bundle。我的新 Bundle 已启动并且运行良好,但我无法使用存储在该 bundle 中的视图。
我向您展示我的 Bundle 的结构:
我想像这样在我的控制器中使用这个 index.html.twig :
<?php
namespace Lister\ListerBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
class DefaultController extends Controller
{
/**
* @Route("/lister")
*/
public function indexAction()
{
return $this->render('ListerListerBundle:Default:index.html.twig');
}
}
但是当我尝试渲染它时出现了这个错误。
Unable to find template "ListerListerBundle:Default:index.html.twig" (looked into: /home/emendiel/Data/Code/Perso/WebLister/app/Resources/views, /home/emendiel/Data/Code/Perso/WebLister/vendor/symfony/symfony/src/Symfony/Bridge/Twig/Resources/views/Form).
我明白那是什么意思,我的文件夹不是 symfony 搜索我的视图的地方,但我没有找到我可以告诉 Symfony 的地方 "ListerBundle/Ressources/views"
在我最老的项目中,没有其他配置。
信息:我将我的包用作可重复使用的包。
此致,
PS: 这是我在 composer.json
中的自动加载部分
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
PSS: 我的 AppKernel :
public function registerBundles()
{
$bundles = [
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
new AppBundle\AppBundle(),
new Lister\ListerBundle\ListerListerBundle(),
];
...
再一次: 这里是我的 dependencyInjection
文件内容:
Configuration.php
<?php
namespace Lister\ListerBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
/**
* This is the class that validates and merges configuration from your app/config files.
*
* To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/configuration.html}
*/
class Configuration implements ConfigurationInterface
{
/**
* {@inheritdoc}
*/
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('lister_lister');
// Here you should define the parameters that are allowed to
// configure your bundle. See the documentation linked above for
// more information on that topic.
return $treeBuilder;
}
}
ListerListerExtension.php
<?php
namespace Lister\ListerBundle\DependencyInjection;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\Loader;
/**
* This is the class that loads and manages your bundle configuration.
*
* @link http://symfony.com/doc/current/cookbook/bundles/extension.html
*/
class ListerListerExtension extends Extension
{
/**
* {@inheritdoc}
*/
public function load(array $configs, ContainerBuilder $container)
{
$configuration = new Configuration();
$config = $this->processConfiguration($configuration, $configs);
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('services.yml');
}
}
解决方案:来自@Cerad
@ListerLister/Default/index.html.twig
@Cerad 的原始回复
For some reason, S3.4 no longer likes the Bundle:Dir:name approach to specifying twig paths and the generate:bundle command has not yet been updated. Not sure if it is a bug or feature. The @ListerLister/Default/index.html.twig path suggested above should work. Try bin/console debug:twig to see your twig namespaces paths. – Cerad
基本问题似乎是在 S3.4 中,不再支持 'ListerListerBundle:Default:index.html.twig' 等 twig 模板路径。
将控制器中的路径替换为:
'@ListerLister/Default/index.html.twig'
一切都会好起来的。如果您不确定实际的命名空间前缀是什么,那么 运行:
bin/console debug:twig
列出它们。
S3.3 仍然可以正常工作,所以这是在 3.4 中发生的变化。无论如何都应该使用命名空间格式,所以这没什么大不了的。
我确实在 github 上提交了关于此的问题:https://github.com/sensiolabs/SensioGeneratorBundle/issues/587
我们将看看维护者要说些什么。
更新:伟大而强大的Fabpot亲自回复了我的问题。如果您想继续使用模板的 'ListerListerBundle:Default:index.html.twig' 格式,请编辑您的 app/config/config.yml 文件:
# app/config/config.yml
framework:
templating:
engines: ['twig']
只有当您的遗留代码仍然使用旧格式时,您才应该这样做。对所有新代码使用 twig 命名空间。
#config/config.yml
#路由器添加后
路由器:
资源:'%kernel.project_dir%/app/config/routing.yml'
strict_requirements: ~
模板:
引擎:[树枝]
我在使用 Symfony 3.4 配置新存储库时遇到了一些麻烦。我使用 symfony 命令在上一个 LTS (3.4) 中创建了他,我也使用命令添加了一个新的 Bundle。我的新 Bundle 已启动并且运行良好,但我无法使用存储在该 bundle 中的视图。
我向您展示我的 Bundle 的结构:
我想像这样在我的控制器中使用这个 index.html.twig :
<?php
namespace Lister\ListerBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
class DefaultController extends Controller
{
/**
* @Route("/lister")
*/
public function indexAction()
{
return $this->render('ListerListerBundle:Default:index.html.twig');
}
}
但是当我尝试渲染它时出现了这个错误。
Unable to find template "ListerListerBundle:Default:index.html.twig" (looked into: /home/emendiel/Data/Code/Perso/WebLister/app/Resources/views, /home/emendiel/Data/Code/Perso/WebLister/vendor/symfony/symfony/src/Symfony/Bridge/Twig/Resources/views/Form).
我明白那是什么意思,我的文件夹不是 symfony 搜索我的视图的地方,但我没有找到我可以告诉 Symfony 的地方 "ListerBundle/Ressources/views"
在我最老的项目中,没有其他配置。
信息:我将我的包用作可重复使用的包。
此致,
PS: 这是我在 composer.json
中的自动加载部分"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
PSS: 我的 AppKernel :
public function registerBundles()
{
$bundles = [
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
new AppBundle\AppBundle(),
new Lister\ListerBundle\ListerListerBundle(),
];
...
再一次: 这里是我的 dependencyInjection
文件内容:
Configuration.php
<?php
namespace Lister\ListerBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
/**
* This is the class that validates and merges configuration from your app/config files.
*
* To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/configuration.html}
*/
class Configuration implements ConfigurationInterface
{
/**
* {@inheritdoc}
*/
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('lister_lister');
// Here you should define the parameters that are allowed to
// configure your bundle. See the documentation linked above for
// more information on that topic.
return $treeBuilder;
}
}
ListerListerExtension.php
<?php
namespace Lister\ListerBundle\DependencyInjection;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\Loader;
/**
* This is the class that loads and manages your bundle configuration.
*
* @link http://symfony.com/doc/current/cookbook/bundles/extension.html
*/
class ListerListerExtension extends Extension
{
/**
* {@inheritdoc}
*/
public function load(array $configs, ContainerBuilder $container)
{
$configuration = new Configuration();
$config = $this->processConfiguration($configuration, $configs);
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('services.yml');
}
}
解决方案:来自@Cerad
@ListerLister/Default/index.html.twig
@Cerad 的原始回复
For some reason, S3.4 no longer likes the Bundle:Dir:name approach to specifying twig paths and the generate:bundle command has not yet been updated. Not sure if it is a bug or feature. The @ListerLister/Default/index.html.twig path suggested above should work. Try bin/console debug:twig to see your twig namespaces paths. – Cerad
基本问题似乎是在 S3.4 中,不再支持 'ListerListerBundle:Default:index.html.twig' 等 twig 模板路径。
将控制器中的路径替换为:
'@ListerLister/Default/index.html.twig'
一切都会好起来的。如果您不确定实际的命名空间前缀是什么,那么 运行:
bin/console debug:twig
列出它们。
S3.3 仍然可以正常工作,所以这是在 3.4 中发生的变化。无论如何都应该使用命名空间格式,所以这没什么大不了的。
我确实在 github 上提交了关于此的问题:https://github.com/sensiolabs/SensioGeneratorBundle/issues/587
我们将看看维护者要说些什么。
更新:伟大而强大的Fabpot亲自回复了我的问题。如果您想继续使用模板的 'ListerListerBundle:Default:index.html.twig' 格式,请编辑您的 app/config/config.yml 文件:
# app/config/config.yml
framework:
templating:
engines: ['twig']
只有当您的遗留代码仍然使用旧格式时,您才应该这样做。对所有新代码使用 twig 命名空间。
#config/config.yml
#路由器添加后
路由器: 资源:'%kernel.project_dir%/app/config/routing.yml' strict_requirements: ~ 模板: 引擎:[树枝]