尝试上传图片但收到错误

时间:2017-05-03 07:23:49

标签: thymeleaf

<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(未找到)

1 个答案:

答案 0 :(得分:0)

我假设路径来自数据库,如果是,那么你可以试试这个

<强>码

 <img th:src="${eachObject.image}" width="50px" height="30px"/>

所以eachObject是迭代时得到的对象列表。这应该可以正常工作。