我正在使用Symfony 2.3的FOSUserBundle(在0.12.0和当前的dev-master上同样的问题)。 我有PATCH方法的问题。
简单示例:
public function patchAction($slug)
{
[...]
return $view;
}
我在php app / console router中看到了正确的路由:debug:
api_patch_user PATCH ANY ANY /api/users/{slug}.{_format}
但是当我提出要求时,我得到了:
501 - Not implemented
当我只改变方法名称,即DELETE一切正常时。所以问题只出现在PATCH类型请求中。