我正在使用以下代码从我的服务器获取图像:
<a href="#">
<img src="<%
if(user.getImageURL()!=null){
out.print(user.getImageURL);
}else{
out.print("images/no-profile-pic-small.jpg");
}%>" />
</a>
上面的代码处理了 imageURL 为 null 的情况,但是当 imageURL 返回正确的 URL 但在服务器上找不到该图像,即 404 Not Found 时,我该如何处理?
编辑:图像位于不同的服务器上。