Yanıtlar:
Parametre, erişim sağladığınız zaman nid'den tam nod nesneye yükseltilmiş olacaktır.
$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();
}
Daha fazla bilgi için değişiklik kaydına bakın .
/taxonomy/term/{tid}
?
menu_get_object
mi?
{}
. Taksonomi terimleri için, rota parametresi adı verilir taxonomy_term
, rota tanımı /taxonomy/term/{taxonomy_term}
. İşte bu şekilde alabilirsiniz \Drupal::routeMatch()->getParameter('taxonomy_term')
.
özel blok kullanıyorsanız veya oluşturuyorsanız, geçerli URL düğüm kimliğini almak için bu kodu izlemeniz gerekir.
// 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'));
}
Düğüm önizleme sayfasında, aşağıdakilerin çalışmadığını unutmayın:
$node = \Drupal::routeMatch()->getParameter('node');
$nid = $node->id();
Düğüm önizleme sayfası için düğümü şu şekilde yüklemeniz gerekir:
$node = \Drupal::routeMatch()->getParameter('node_preview');
$nid = $node->id();