我正在尝试显示数据库中的图像。当我想要显示时,它工作正常
我自己的图像使用...... <b>Image:</b> <img src="images/uploads/${user.getImage()}"
但是,如果我想显示不同的用户或所有用户图像,则会出现空白方块。我认为它可能与<c:forEach>
标签有关,但不确定。
<c:forEach var="user" items="${UserList}">
<p><br><b>Name :</b></p> ${user.getUsername()}<a href="ProfilePage2.jsp">View Profile Page</a>
<div id="img2"><b>Image:</b> <img src="images/uploads/${user.getImage()}" width="200px" height="150px"/></div>
</c:forEach>
名称显示正常但不是图像!非常感谢任何帮助!
答案 0 :(得分:1)
User.getImage()方法返回什么内容?
另外,试试:
<img src="images/uploads/${user.image}" width="200px" height="150px"/>