Reputation: 39
I am using handlebars template to display the data. Now I am retrieving using url to display the image. I don't know how to retrieve the image using base64. How can retrieve using base64.
{{#each content.files }}
<img class="mb-4 src="{{this.url}}" />
{{/each}}
Upvotes: 0
Views: 526
Reputation: 39
{{#each content.files}}
<img class="mb-4 src="data:image/png;base64, {{image}}" />
{{/each}}
Upvotes: 1