1 回答
TA贡献1864条经验 获得超2个赞
不知道如何以及为什么,但在我的树枝文件中呈现了该功能:
<p class="media-body pb-3 mb-0 small lh-125 border-bottom border-gray">
<strong class="text-gray-dark">Autheur : </strong>
<a href="{{ path('theme_created_by', {'lastname': theme.user.lastname}) }}">
{{ theme.user.lastname }}
</a>
<br/>
<a href="{{ path( 'theme_show', {'id' : theme.id} ) }}">
<strong>{{ theme.name }}</strong><br/>
</a>
我将该路径行替换为:
<a href="{{ path('theme_created_by', {'username': theme.user.username}) }}">
{{ theme.user.lastname }}
</a>
也更改了我的路线中传递的参数:username @Route("/themes/by/{username}", name="theme_created_by") 现在它可以工作了..
- 1 回答
- 0 关注
- 287 浏览
添加回答
举报