Jawaban:
Parameter akan di-upcast dari nid ke objek full node pada saat Anda mendapatkan akses ke sana, jadi:
$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();
}
Lihat catatan perubahan untuk informasi lebih lanjut.
/taxonomy/term/{tid}
?
menu_get_object
?
{}
dalam rute Anda. Untuk istilah taksonomi paramater rute disebut taxonomy_term
, definisi rute /taxonomy/term/{taxonomy_term}
. Di sini Anda bisa mendapatkannya seperti ini \Drupal::routeMatch()->getParameter('taxonomy_term')
,.
jika Anda menggunakan atau membuat blok khusus maka Anda harus mengikuti kode ini untuk mendapatkan id url node saat ini.
// 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'));
}
Catatan pada halaman pratinjau node, berikut ini tidak berfungsi:
$node = \Drupal::routeMatch()->getParameter('node');
$nid = $node->id();
Untuk halaman pratinjau simpul, Anda harus memuat simpul dengan cara ini:
$node = \Drupal::routeMatch()->getParameter('node_preview');
$nid = $node->id();
Bagaimana cara memuat objek simpul di halaman pratinjau simpul?