Symfony2 FOSRestBundle:不允许POST方法,允许GET

时间:2015-03-10 14:49:48

标签: php symfony fosrestbundle

我正在使用FOSRestBundle来构建API。我的资源的POST方法是不允许的。任何人都知道为什么。虽然接受GET requets。

  ...
  /**
   * @ParamConverter("post", converter="fos_rest.request_body")
   */
  public function postAction(Post $post)
  {
    $person = new Person();
    return $person;
  }
  ...

我的路线配置如下:

persons:
    type:     rest
    resource: DnD\ApiBundle\Controller\PersonController

0 个答案:

没有答案