Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[Routing] add mapped route parameters and aliases #20812

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add mapped route parameters and aliases
  • Loading branch information
eltharin committed Mar 24, 2025
commit e37a9dc3dc191f3f82ffaea3f11da84b2056071b
77 changes: 77 additions & 0 deletions 77 doctrine.rst
Original file line number Diff line number Diff line change
Expand Up @@ -861,6 +861,83 @@ control behavior:

The ``message`` option was introduced in Symfony 7.1.

Mapped Route Parameters
~~~~~~~~~~~~~~~~~~~~~~~

When many route parameters are used to find more than one entity, it is mandatory to use #[MapEntity] attributes and this can become cumbersome::
eltharin marked this conversation as resolved.
Show resolved Hide resolved

#[Route('/document/{slug}/{id}-{name}/')]
public function showDocument(
#[MapEntity(mapping: ['slug' => 'slug'])]
Category $category,
#[MapEntity(mapping: ['id' => 'id', 'name' => 'name'])]
Document $document,
): Response
{
// the database queries in this case would be:
// $document = $documentRepository->findOneBy(['id' => 'the id', 'name' => 'the name']);
// $category = $categoryRepository->findOneBy(['slug' => 'the slug']);
}

As an alternative, you can also use Mapped Route Parameters.

When adding route parameters, you can now define the mapping between the route parameter and the controller argument::

#[Route('/document/{slug:category}/{id:document}-{name:document}/')]
public function showDocument(Document $document, Category $category): Response
{
// the database queries in this case would be:
// $document = $documentRepository->findOneBy(['id' => 'the id', 'name' => 'the name']);
// $category = $categoryRepository->findOneBy(['slug' => 'the slug']);
}

.. versionadded:: 7.1
eltharin marked this conversation as resolved.
Show resolved Hide resolved

The ``Mapped Route Parameters`` was introduced in Symfony 7.1.
eltharin marked this conversation as resolved.
Show resolved Hide resolved

But when two properties have the same name, you will catach an error if you try ::

#[Route('/document/{slug:category}/{id:document}-{slug:document}/')]
public function showDocument(Document $document, Category $category): Response
{
// category entity and document entity have the same property ``slug`` but in the route_parameters we can't have two ``slug`` arguments.
}

In this case we have to return to MapEntiy::

#[Route('/document/{slugCategory}/{id}-{slugDocument}/')]
public function showDocument(
#[MapEntity(mapping: ['slugCategory' => 'slug'])]
Category $category
eltharin marked this conversation as resolved.
Show resolved Hide resolved
#[MapEntity(mapping: ['id' => 'id', 'slugDocument' => 'slug'])]
Document $document,
): Response
{
// the database queries in this case would be:
// $document = $documentRepository->findOneBy(['id' => 'the id', 'slug' => 'the slug document']);
// $category = $categoryRepository->findOneBy(['slug' => 'the slug category']);
}

As an alternative, tou can use ``Aliased Mapped Route Parameters``.
eltharin marked this conversation as resolved.
Show resolved Hide resolved

When adding route parameters, you can now define the mapping between the route parameter and the controller argument with an alias::

#[Route('/document/{slugCategory:category.slug}/{id:document}-{slugDocument:document.slug}/')]
public function showDocument(Document $document, Category $category): Response
{
// the database queries in this case would be:
// $document = $documentRepository->findOneBy(['id' => 'the id', 'slug' => 'the slug document']);
// $category = $categoryRepository->findOneBy(['slug' => 'the slug category']);
}

In this case, _route_mapping keys will be slugCategory and slugDocument, and used by path twig option::

{{ path('showDocument', {slugCategory: 'invoices', id: 25, slugDocument: 'invoice_CFD025125'}) }}
eltharin marked this conversation as resolved.
Show resolved Hide resolved

.. versionadded:: 7.3

The ``Aliased Mapped Route Parameters`` was introduced in Symfony 7.3.

Updating an Object
------------------

Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.