无效的YAML Symfony4

时间:2018-12-06 19:54:38

标签: symfony4

当前在symfony4上,我遇到此错误

error

我的路线

docker run -d --ulimit nofile=98304:98304 ...

1 个答案:

答案 0 :(得分:0)

正则表达式转义不正确,请尝试以下操作:

property.show: 
  controller: "App\\Controller\\PropertyController::show"
  path: "/biens/{slug}-{id}"
  requirements: 
    id: \d+
    slug: "[a-z0-9\\-]*"