Então, eu tenho esse nó:
object(Drupal\node\Entity\Node)[1862]
protected 'values' =>
array (size=17)
'vid' =>
array (size=1)
'x-default' => string '7' (length=1)
'langcode' =>
array (size=1)
'x-default' =>
array (size=1)
0 =>
array (size=1)
'value' => string 'en' (length=2)
... (more fields)
'field_image' =>
array (size=1)
'x-default' =>
array (size=1)
0 =>
array (size=5)
'target_id' => string '1' (length=1)
'alt' => string '' (length=0)
'title' => string '' (length=0)
'width' => string '150' (length=3)
'height' => string '120' (length=3)
Agora o field_image possui uma matriz com x-default e alguns dados básicos da imagem. Como mostro a imagem ou crio um link para a imagem dentro do modelo Twig?
Recoverable fatal error: Object of class Drupal\Core\Field\FieldItemList could not be converted to string
então eu tentei com isso: url(node.field_image.0.entity.uri.value)
mas depois ele me diz o seguinte:Twig_Error_Runtime: An exception has been thrown during the rendering of a template ("Route "public://image.png" does not exist.")
FieldItemList
s em uma representação string (que não consigo encontrar)
url()
quer uma rota. Que tal url_from_path(node.field_image.0.entity.uri.value)
?
url_from_path()
parece gerar isso: http://mywebsite.local/public%3A//image.png
portanto, parece estar codificando url e acrescentando o valor exato ao URL
url(node.field_image.0.entity.uri)
( questão relevante )