Antworten:
Entsprechend den Funktionen - In Twig Templates können Sie dies ganz einfach tun
{{ path('entity.node.canonical', {'node': node.id}) }}
node--
basierten Zweigvorlage führt jedoch zum gleichen Ergebnis.
In einer node.html.twig können Sie direkt verwenden {{ url }}
<a href="{{ url }}">read more</a>
Weitere Informationen finden Sie im Kommentar in der Kernvorlage /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 }}
Ich habe diese Lösung gefunden, die funktioniert, aber ziemlich kompliziert ist.
{{ path('entity.node.canonical', {'node': content['#node'].id() }) }}
node.id
anstelle voncontent['#node'].id()
content['#node'].id()
ist für den DS-Kontext korrekt.
url
es sich um eine verfügbare Variable handelt. So wird beispielsweise durch einfaches Drucken{{ url }}
die rohe URL gerendert,/node/[nid]
dh/node/30
ohne Umbruchmarkierung. Ist es das, wonach Sie suchen?