dongzhangji4824 2012-02-16 17:39
浏览 184
已采纳

Symfony 2:如何通过路由名称获取路由默认值?

Is it possible to retrieve info about a certain route by its name, or get a list of all routes?

I need to be able to fetch the _controller value in defaults for any route, not only the current.

Is this possible and how?

P.S.: I found I could get the path to the routes YAML being used, but reparsing it seems unnecessary and heavy.

  • 写回答

2条回答 默认 最新

  • dongying9756 2012-02-16 19:01
    关注

    I am really good at answering my own questions..

    To get routes use getRouteCollection() on the router ($this -> get('router') -> getRouteCollection() inside a controller), then you get RouteCollection instance on which you can all() or get($name).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?