2016-11-09 11 views
2

私は現在、Hateoasを使用していくつかのREST Webサービスを開発しています。リスト表示のページングを実装したいと思います。willdurand hateoasバンドルのページネーションルートの問題

注:データベースの検索ロジックは、これは私のコントローラであり、まだ

実装されていません。

use Hateoas\Representation\PaginatedRepresentation; 
use Hateoas\Representation\CollectionRepresentation; 

/** 
* @Rest\View(serializerGroups={"details"}) 
* @Doc\ApiDoc(
*  section="User", 
*  resource=true, 
*  description="Get all catalogs accessible by a User", 
*  requirements={ 
*   { 
*   "name"="id", 
*   "dataType"="integer", 
*   "requirement"="\d+", 
*   "description"="The id of the user from which to retrieve" 
*   } 
*  }, 
*  output={ 
*   "class"="\CatalogV2", 
*   "groups"={"details"} 
*  } 
*) 
*/ 
public function getUserLicencesAction($id, $page = 1, $limit = 10) { 
    $service_rustine = $this->container->get('rustine_core.link'); 
    // Get User corresponding to id 
    $user = $service_rustine->getUser($id); 

    // Get licences 
    $licences = $user->getLicencesRight(); 

    $offset = ($page - 1) * $limit; 
    $pages = (int)ceil(count($licences)/$limit); 

    $collection = new CollectionRepresentation(
     array_slice($licences, $offset, $page * $limit), 
     'licences', 
     'licences', 
     new Exclusion(array("details")) 
     ); 
    $paginated = new PaginatedRepresentation(
     $collection, 
     'get_user_licences', 
     array("id" => $id), 
     $page, 
     $limit, 
     $pages 
     ); 

    // JSON output 
    return $paginated; 
} 

私は持っておくのエラーは次のとおりです。

"いくつかの必須パラメータは、(不足しています" id ")を使用してルート" get_user_licences "のURLを生成します。

ドキュメントはrについてあまり明確ではありませんouteパラメータと私は空の配列を使用して任意の例を見つけることができません。

parameters配列に指定されたrouteparam idは、UrlGeneratorでは常に無視されます。 array($ id)を試しましたが、動作していません。

私がしようと、このようなのルートを生成するために、同じコントローラで、問題はありません。

$this->get('router')->generate('get_user_licences', array('id' => $id)); 

はあなたの助けをありがとう!

+0

解決策を回答として追加し、それを受け入れる必要があります。この状況を修正したとしても、これらの症状に対する唯一の修正ではなく、他の人が追加の人々を助ける可能性のある他の解決策を追加することができます。 –

答えて

2

問題が見つかりました:実際にHateoas \ Representation \ PaginatedRepresentationメタデータを再定義するYML設定ファイルがありました...ルート定義のパラメータに使用されている式が正しくありませんでした。私が持っていた例えば「次」リンクの場合:

expr(object.getPage() + 1) 

代わり

expr(object.getParameters(object.getPage() + 1)) 

の多分これは誰か一日を助けます!

関連する問題