Skip to content
Advertisement

Display images dynamically using jquery and thymeleaf

I am trying to display image dynamically by using jquery append function with thymeleaf as view engine in spring boot

Here is the way that I tried to append the image to div (‘.show-image’):

JavaScript

However, it only shows the empty images (no 404 error)

I tried with other random online image and works:

JavaScript

When I statically display the image also works (I think no path issue):

JavaScript

Any suggestions?

Advertisement

Answer

Turns out thymeleaf is a server side technology, which it won’t render any new images.

I think my design was wrong, and I just need to render the image without using thymeleaf like this:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement