我正在使用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