<img th:src="@{resources\static\images\Desert.jpg}" text**height="15%"width="15%"/>
我正在尝试在网站上查看图片,但我收到了错误消息。这是Thymeleaf。
Google控制台上的错误:
获取http://localhost:8080/appstore/resources/static/images/Desert.jpg 404(未找到)
答案 0 :(得分:0)
我假设路径来自数据库,如果是,那么你可以试试这个
<强>码强>
<img th:src="${eachObject.image}" width="50px" height="30px"/>
所以eachObject
是迭代时得到的对象列表。这应该可以正常工作。