Câu trả lời:
Tham số sẽ được truyền lên từ nid đến đối tượng nút đầy đủ vào thời điểm bạn có quyền truy cập vào nó, vì vậy:
$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();
}
Xem hồ sơ thay đổi để biết thêm thông tin.
/taxonomy/term/{tid}
?
menu_get_object
?
{}
trong tuyến đường của mình. Đối với thuật ngữ phân loại, tham số tuyến được gọi taxonomy_term
, định nghĩa tuyến /taxonomy/term/{taxonomy_term}
. Ở đây bạn có thể có được nó như thế này , \Drupal::routeMatch()->getParameter('taxonomy_term')
.
nếu bạn đang sử dụng hoặc tạo khối tùy chỉnh thì bạn phải theo mã này để lấy id nút url hiện tại.
// 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'));
}
Lưu ý trên trang xem trước nút, sau đây không hoạt động:
$node = \Drupal::routeMatch()->getParameter('node');
$nid = $node->id();
Đối với trang xem trước nút, bạn phải tải nút theo cách này:
$node = \Drupal::routeMatch()->getParameter('node_preview');
$nid = $node->id();