-1

我正在尝试显示我的数据库中的图像。当我想使用......显示我自己的图像时,它工作正常<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>

名称显示正常,但图像不显示!任何帮助是极大的赞赏!

4

1 回答 1

1

User.getImage() 方法返回什么?

另外,尝试:

<img src="images/uploads/${user.image}"  width="200px" height="150px"/>
于 2013-04-10T12:31:36.737 回答