Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
eclipse 正在标记我从 symfony2 博客教程中获取的路线。
错误是否正确标记或者我需要更改我的 yml 编辑器?
_welcome: pattern: / defaults: { _controller: BloggerBlogBundle:Default:index }
如果我的记忆是正确的,Symfony2 使用自定义 YAML 解析器,它不需要在非字母数字字符的值周围加上引号。传统的 YAML 规范可以。尝试在 _controller 的值周围加上引号。它不会破坏 Symfony,它应该让 Eclipse 开心
{ _controller: "BloggerBlogBundle:Default:index" }