if you need access to the request parameters, the route name, or the route object itself, use RouteMatch.
like for example a user ID, you can access the data using:
$request->attributes->get('_raw_variables')->get('user')
or better you should inject the ‘current_route_match’ service or you can use Drupal::routeMatch()
Example
$route_match->getRawParameters('user')
Similar Posts:
- url without www and http to https in drupal 8/9
- How to get the ip address of the current user in drupal 8?
- How to add class to content field link in Drupal 8 / 9
- how to add bootstrap readmore button to teaser in drupal 8
- How to create custom block in Drupal 8 programmatically
872