Mary Tan
Mary Tan

Reputation: 39

How to display images from api using handlebars in Pure js ? base64

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

Answers (1)

Mary Tan
Mary Tan

Reputation: 39

 {{#each content.files}}
        <img class="mb-4 src="data:image/png;base64, {{image}}" />
   {{/each}}

Upvotes: 1

Related Questions