Odpowiedzi:
Do czasu uzyskania dostępu do tego parametru parametr zostanie przekształcony z nid na pełny obiekt węzła, więc:
$node = \Drupal::routeMatch()->getParameter('node');
if ($node instanceof \Drupal\node\NodeInterface) {
// You can get nid and anything else you need from the node object.
$nid = $node->id();
}
Zobacz rekord zmian, aby uzyskać więcej informacji.
/taxonomy/term/{tid}
?
menu_get_object
?
{}
na swojej trasie. Dla terminów taksonomicznych nazywany jest parametr taxonomy_term
trasy, definicja trasy /taxonomy/term/{taxonomy_term}
. Tutaj można dostać to w ten sposób, \Drupal::routeMatch()->getParameter('taxonomy_term')
.
jeśli używasz lub tworzysz blok niestandardowy, musisz postępować zgodnie z tym kodem, aby uzyskać bieżący identyfikator węzła URL.
// add libraries
use Drupal\Core\Cache\Cache;
// code to get nid
$node = \Drupal::routeMatch()->getParameter('node');
$node->id() // get current node id (current url node id)
// for cache
public function getCacheTags() {
//With this when your node change your block will rebuild
if ($node = \Drupal::routeMatch()->getParameter('node')) {
//if there is node add its cachetag
return Cache::mergeTags(parent::getCacheTags(), array('node:' . $node->id()));
} else {
//Return default tags instead.
return parent::getCacheTags();
}
}
public function getCacheContexts() {
//if you depends on \Drupal::routeMatch()
//you must set context of this block with 'route' context tag.
//Every new route this block will rebuild
return Cache::mergeContexts(parent::getCacheContexts(), array('route'));
}
Uwaga na stronie podglądu węzła następujące czynności nie działają:
$node = \Drupal::routeMatch()->getParameter('node');
$nid = $node->id();
W przypadku strony podglądu węzła należy załadować węzeł w ten sposób:
$node = \Drupal::routeMatch()->getParameter('node_preview');
$nid = $node->id();