リットルでデータベースからJSONデータの上にループが私のコントローラに持っているだから、現在小枝
{% for theme in themes %}
<div am-col="md-6">
<div am-row>
<div am-col="md-3">
{{ theme.preview|json_encode }}
</div>
<div am-col="md-8">
{{ theme.name }}
</div>
</div>
</div>
{% endfor %}
今theme.previews
は、以下のようにJSONを返します。
{"icon_with_video_preview":{"icon_url":"https:\/\/0.s3.envato.com\/files\/170231072\/design-wordpress80.png","landscape_url":"https:\/\/0.s3.envato.com\/files\/170231083\/design-wordpresspreview.jpg","video_url":"https:\/\/0.s3.envato.com\/h264-video-previews\/02e0816d-0957-45c4-af2c-792e37bcc37a\/14727479.mp4"}}
l icon_urlにアクセスして表示する必要があります。何か案は?私は現在{{ theme.preview.icon_with_video_preview.icon_url }}
を試しましたが、この配列を文字列に変換できないというエラーが発生しました。
正確なコード、エンティティ/エンティティの正確なエラーと関連する部分を投稿したい場合があります。 – ccKep