本文介绍了是否可以在 symfony2 中动态设置路由的默认参数值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 symfony2 控制器中使用注释定义了一个路由.EG:
I have a route defined in a symfony2 controller using annotations. EG:
@Route("/{year}", name="show_list_for_user", defaults={ "year" = "2012" })
是否可以使默认年份动态化.也许从服务对象中读取年份?
Is it possible to make make the default year dynamic. Maybe to read the year from a service object?
推荐答案
恐怕这是不可能的,默认值是静态的.
I'm afraid that is not possible, the defaults are static.
这篇关于是否可以在 symfony2 中动态设置路由的默认参数值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!