What is the difference between 'url' and 'path' in symfony2.3

后端 未结 2 1118
眼角桃花
眼角桃花 2021-02-01 15:13

The document said

{# src/Acme/ArticleBundle/Resources/views/Article/recentList.html.twig #}
{% for article in articles %}
    

        
2条回答
  •  佛祖请我去吃肉
    2021-02-01 16:04

    url Twig function generates absolute path path Twig function generates / related url

    Example we have http://sf2sandbox.local with AcmeDemoBundle

    {{ path('_welcome') }} produce /
    {{ url('_welcome') }} produce http://sf2sandbox.local/
    

提交回复
热议问题