উত্তর:
প্যারামিটারটি যখন আপনি এটি অ্যাক্সেস পেয়েছেন তখন 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')
।
আপনি যদি কাস্টম ব্লক ব্যবহার করছেন বা তৈরি করছেন তবে বর্তমান ইউআরএল নোড আইডি পেতে আপনাকে এই কোডটি অনুসরণ করতে হবে।
// 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();