我使用 Symfony2.2 和 FOSRestBundle
我设置
#app/config/config/yml
myapp_rest:
resource: "@MyappRestBundle/Resources/config/routing.yml"
type: rest
prefix: /v1
和
#src/Myapp/RestBundle/Resources/config/routing.yml
user:
resource: Myapp\RestBundle\Controller\UserController
type: rest
我的 UserController 扩展了 FOSRestController 并具有方法cgetAction()
和newAction()
. 当我尝试路由器:调试时,路由显示:
.. symfony 路线 ..
get GET ANY /v1/{id}.{_format}
new GET ANY /v1/new.{_format}
根据文档,我所期望的类似于
"get_users" [GET] /users
我错过了什么?