Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一条需要很多参数的路径:
{{ path('work_path', {'username': work.user.username, 'work_id': work.id, 'work_slug': work.slug}) }}
我不想在任何地方都使用这条长线,我只想为这条路径提供一个特定的功能。
有没有办法path()从我的自定义函数中调用该函数(除了将路由器服务传递给扩展类)?
path()
作为一种可能的解决方案,您可能有兴趣编写自己的twig 宏。