web-dev-qa-db-ja.com

FOSRestBundleのルートはどのように機能しますか?

誰かがFOSRestを使用してRESTリクエストに対してルートがどのように構成されているかを明確に説明できますか?チュートリアルごとに異なるように見えます。

私のコントローラー:

<?php
namespace Data\APIBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;

class DatasetController extends Controller{

 protected function postDatasetAction(Request $request){
  //Query here
}

URLは次のようになります:Symfony/web/app_dev.php/api/dataset。だから私はルートは次のようなものでなければならないと思いました...

app/config/routers.yml

data_api:
  resource: "@DataAPIBundle/Resources/config/routing.yml"
  prefix: /api
  type: rest

そして....

データ/APIBundle/Resources/config/routing.yml

data_query:
  type: rest
  pattern:  /dataset
  defaults: {_controller: DataAPIBundle:Dataset:datasetAction, _format: json }
  requirements:
     _method: POST
15
user2142111

次のURLに従って公式ドキュメントを読んでください: http://symfony.com/doc/master/bundles/FOSRestBundle/index.html

このバンドルを開始するには、単一のRESTfulコントローラーのドキュメントに従うことをお勧めします: http://symfony.com/doc/master/bundles/FOSRestBundle/5- Automatic-route-generation_single-restful-controller.html

このバンドルが提供できるものについての明確な例( https://github.com/liip/LiipHelloBundle )もあります。


あなたが投稿したスニペットから、私の注意を引いたものはほとんどありません。

コントローラメソッドの可視性は保護されていますが、公開する必要があります( http://symfony.com/doc/current/book/controller.html

public function postDatasetAction(Request $request) {
     // your code
}

ルートを構成するために作成された「routing.yml」ファイルには、DatasetActionではなく、前述のコントローラーメソッド(postDatasetActionの名前が含まれている必要があります。 )::

# routing.yml
data_query:
    type: rest
    pattern:  /dataset
    defaults: {_controller: DataAPIBundle:Dataset:postDatasetAction, _format: json }
    requirements:
        _method: POST

次のようなルートを設定する例を以下に示します。

get_items GET ANY ANY/items。{json}

# config.yml
fos_rest:
    allowed_methods_listener: true

    format_listener:
        default_priorities: ['json', html, '*/*']
        fallback_format: json
        prefer_extension: true

    param_fetcher_listener: true

    routing_loader:
        default_format: json

    view:
        formats:
            json: true
        mime_types:
            json: ['application/json', 'application/x-json']
        force_redirects:
            html: true
        view_response_listener: force

# routing.yml
categories:
    type:     rest
    resource: Acme\DemoBundle\Controller\ItemController

<?php

namespace Acme\DemoBundle\Controller

use FOS\RestBundle\Request\ParamFetcher;
use FOS\RestBundle\Controller\Annotations as Rest;

class ItemController 
{
    /**
     * Get items by constraints
     *
     * @Rest\QueryParam(name="id", array=true, requirements="\d+", default="-1", description="Identifier")
     * @Rest\QueryParam(name="active", requirements="\d?", default="1", description="Active items")
     * @Rest\QueryParam(name="from", requirements="\d{4}-\d{2}-\d{2}", default="0000-00-00", description="From date")
     * @Rest\QueryParam(name="to", requirements="\d{4}-\d{2}-\d{2}", default="0000-00-00", description="End date")
     * @Rest\QueryParam(name="labels", array=true, requirements="\d+", default="-1", description="Labels under which items have been classifed")
     *
     * @Rest\View()
     *
     * @param  ParamFetcher                                          $paramFetcher
     */
    public function getItemsAction(ParamFetcher $paramFetcher) {
        $parameters = $paramFetcher->all();

        // returns array which will be converted to json contents by FOSRestBundle
        return $this->getResource($parameters);
    }
}

P.S. :リソースをHTMLページとして表示するには、ビューを追加する必要があります

17