如何以编程方式获取Drupal 8中的节点永久链接

时间:2018-06-12 11:41:51

标签: drupal-8

我在Drupal 8中创建了5篇文章。 我使用以下代码 现在我有1个节点id的数组

  

$ node_storage-> loadMultiple($ NIDS);

那么现在我如何获得节点永久链接和field_image的缩略图大小?请建议

1 个答案:

答案 0 :(得分:0)

$link = '/node/' . $node_storage[0]->id();
$image = $node_storage[0]->get('field_image')->getValue();
$image = $node_storage[0]->get('field_image')->getValue()[0]['value'];

类似的东西应该起作用