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.
symfony2 的链接生成器的一个问题
我正在制作这样的链接
<a href="{{ path('acme_link',{'user':'taro') }} ">click!</a>
它在下面发布这样的链接。
<a href=".../move/taro">click!</a>
但我想链接到页面中间,例如
<a href=".../move/taro#middle">click!!</a>
Symfony 链接生成器如何做到这一点?
首先创建链接,然后添加#middle到它:
#middle
<a href="{{ path('acme_link', {'user':'taro'}) }}#middle">click!</a>