Symfony“跨” Twig 模板内的域
我想这样做:
$this->get('translator')->trans('notice.unregistered', array(), 'index');
在 Twig 模板内,所以我不必将其作为参数传递。如何?
I'd like to do this:
$this->get('translator')->trans('notice.unregistered', array(), 'index');
Inside Twig template, so I don't have to pass this as an argument. How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还可以使用反式过滤器:
You can also do using trans filter :
解决办法是:
The solution is:
您可以添加自定义函数来更改模板内的域。
添加您的功能:
然后使用它:
You can add custom functions to change domains inside your templates.
Add your functions:
Then use it: