我在 Symfony 中的 routing.yml 有问题。当我输入默认值时,它会返回我和空值。我不知道他为什么这样做。我像 Symfony 的文档那样做,但问题仍然存在 http://symfony.com/doc/current/book/routing.html
lapille_plateform_homepage:
path: /{page}
defaults:
_controller: LAPILLEPlateformBundle:Advert:index
page: 1
requirements:
page: \d*
我的错误是一个空变量,就像 Symfony 错误
非常感谢你的帮助。
亚历山大
解决了
变更要求
requirements:
page: \d*
经过
requirements:
page: \d+
谢谢大家