我正在尝试创建一个网站来上传/显示图像(使用 MVC4)。我编写了以下代码来获取本地存储在服务器上文件夹 App_Data\Images 下的图像。图像的路径存储在模型的 ImageFile 属性中。
视图呈现各种图像的 ID、Caption但图像未加载。图像文件存在于针对 ImageFile 属性存储的路径中。我怎样才能解决这个问题?
//模型
public class Photo
{
public int ID { get; set; }
public string ImageFile { get; set; } //This contains a path where the image is locally stored on the server
public string Caption { get; set; }
byte[] Image { get; set; }
}
//控制器
private PhotoDBContext db = new PhotoDBContext();
public ActionResult Index()
{
return View(db.Photos.ToList());
}
//看法
@model IEnumerable<MyPhotoLibrary.Models.Photo>
<table>
@foreach (var item in Model) {
<tr>
<td>
<img src="@Url.Content(item.ImageFile)" alt="" />
</td>
<td>
@Html.DisplayFor(modelItem => item.Caption)
</td>
</tr>
}
</table>
另外,如果我将图像保存为字节数组(而不是物理存储文件并使用文件路径),我如何重新创建图像并将其显示在视图中。即如何在迭代视图中的模型时从字节数组重新创建图像?
编辑
我已经能够通过执行以下操作(两者都需要)来解决显示问题 - 1)将路径更改为相对路径 2)将图像移动到 App_Data 以外的单独文件夹。(找到这个)
谢谢。