过滤器不会在我的自定义 Twig 扩展中退出
Filter not exit in my custom Twig extension
按照 http://symfony.com/doc/current/cookbook/templating/twig_extension.html 创建我的自定义 Twig 过滤器以用于我的 Symfony 2 项目。
一切似乎都很好,但在加载页面时,它说:
The filter "tss" does not exist in AppBundle:Default:status.html.twig at line 7
我的services.yml
:
services:
app.twig_extension:
class: AppBundle\Twig\AppExtension
tags:
- { name: twig.extension }
我的src/AppBundle/Twig/AppExtension.php
:
<?php
namespace AppBundle\Twig;
class AppExtension extends \Twig_Extension
{
public function getFilter()
{
return [
new \Twig_SimpleFilter('tss', [$this, 'tssFilter']),
];
}
public function tssFilter(\DateTime $timestamp)
{
return 'ready';
}
public function getName()
{
return 'app_extension';
}
}
我是不是漏掉了什么?
感谢您的建议。
您拼错了方法名称。它 public function getFilters()
不是 public function getFilter()
按照 http://symfony.com/doc/current/cookbook/templating/twig_extension.html 创建我的自定义 Twig 过滤器以用于我的 Symfony 2 项目。
一切似乎都很好,但在加载页面时,它说:
The filter "tss" does not exist in AppBundle:Default:status.html.twig at line 7
我的services.yml
:
services:
app.twig_extension:
class: AppBundle\Twig\AppExtension
tags:
- { name: twig.extension }
我的src/AppBundle/Twig/AppExtension.php
:
<?php
namespace AppBundle\Twig;
class AppExtension extends \Twig_Extension
{
public function getFilter()
{
return [
new \Twig_SimpleFilter('tss', [$this, 'tssFilter']),
];
}
public function tssFilter(\DateTime $timestamp)
{
return 'ready';
}
public function getName()
{
return 'app_extension';
}
}
我是不是漏掉了什么?
感谢您的建议。
您拼错了方法名称。它 public function getFilters()
不是 public function getFilter()