私はこのルートを持っています:
_view_tag:
pattern: /topic/{tid}
defaults: {_controller: "MyCoreBundle:ViewTag:index" }
そして、私はこのようなURLを表示したいと思います:example.com/topic/Web+development
。私は使用しますhref="topic/{{ topicname|url_encode() }}"
。動作しますが、もちろん適切な方法ではないので、に変更しhref="{{ path('_view_tag', {'tid': topicname|url_encode() } ) }}"
ます。しかし、それは表示されていませんexample.com/topic/Web+development
、それは表示されますexample.com/topic/Web%2Bdevelopment
。
私もこれを試してみます:
{% set _tid = topicname|url_encode() %}
<a href="{{ path('_view_tag', {'tid': _tid } ) }}" ...
しかし、まだ機能していません
私の質問は、example.com/topic/Web+development
小枝パス関数を使用してそれを表示させる方法ですか?