私は現在、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));
はあなたの助けをありがとう!
解決策を回答として追加し、それを受け入れる必要があります。この状況を修正したとしても、これらの症状に対する唯一の修正ではなく、他の人が追加の人々を助ける可能性のある他の解決策を追加することができます。 –