Yanıtlar:
Fonksiyonlara Göre - Twig Şablonlarında kullanabileceğiniz basit
{{ path('entity.node.canonical', {'node': node.id}) }}
node--
temel bir dal şablonunda {{url}} kullanmak aynı sonucu verir.
Bir node.html.twig dosyasında doğrudan {{ url }}
<a href="{{ url }}">read more</a>
Daha fazla bilgi için çekirdek şablondaki yorumu okuyun /core/modules/node/templates/node.html.twig
:
{#
/**
* @file
* Default theme implementation to display a node.
*
* Available variables:
* - node: The node entity with limited access to object properties and methods.
* ...
* - url: Direct URL of the current node.
* ...
#}
...
<article{{ attributes }}>
{{ title_prefix }}
{% if not page %}
<h2{{ title_attributes }}>
<a href="{{ url }}" rel="bookmark">{{ label }}</a>
</h2>
{% endif %}
{{ title_suffix }}
İşe yarayan ama oldukça kıvrımlı bir çözüm buldum.
{{ path('entity.node.canonical', {'node': content['#node'].id() }) }}
node.id
content['#node'].id()
content['#node'].id()
, DS bağlamı için doğrudur.
url
, bunun kullanılabilir bir değişken olduğunu göreceksiniz . Böylece{{ url }}
, örneğin yazdırmak ham URL'yi,/node/[nid]
yani/node/30
herhangi bir kaydırma işaretlemesi olmadan oluşturur. Yapmak istediğiniz bu mu?