回答:
パラメータは、アクセスするまでにnidからフルノードオブジェクトにアップキャストされるため、次のようになります。
$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();
}
詳細については、変更記録を参照してください。
/taxonomy/term/{tid}
か?
menu_get_object
ですか?
{}
、ルート内で記述したものです。分類学の用語では、ルートパラメータはtaxonomy_term
ルート定義と呼ばれます/taxonomy/term/{taxonomy_term}
。ここでは、次のように取得できます\Drupal::routeMatch()->getParameter('taxonomy_term')
。
カスタムブロックを使用または作成している場合は、このコードに従って現在のURLノードIDを取得する必要があります。
// 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'));
}
ノードのプレビューページでは、次の機能は機能しません。
$node = \Drupal::routeMatch()->getParameter('node');
$nid = $node->id();
ノードのプレビューページでは、次の方法でノードをロードする必要があります。
$node = \Drupal::routeMatch()->getParameter('node_preview');
$nid = $node->id();