0
我是最後一年的學生,從事五年規劃,我有一個關於在二進制數據中存儲圖像的問題。我嘗試了很多解決方案,我在Google上搜索過,但沒有解決任何問題。如何在MVC列表中顯示圖像?
查看
@model IEnumerable<PictureServices.Picture>
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
<tr>
@foreach (var item in Model)
{
<td>
@{
var base64 = Convert.ToBase64String(item.image);
var imgsrc = string.Format("data:image/jpg;base64,{0}", base64);
}
<img src='@imgsrc' style="max-width:100px; max-height:100px;">
</td>
模型
public class Picture
{
public int id { get; set; }
public byte[] image { get; set; }
public string name { get; set; }
}
控制器
public class CarServicesController : Controller
{
TestingEntities db = new TestingEntities();
public ActionResult Index()
{
Picture ds = new Picture();
var item = (from d in db.Pictures
select d).ToList();
return View(item);
}
我按照您的指示嘗試了這一個,但它沒有起作用,調試在斷點處停止。 –
你有沒有例外? – Shyju
顯示沒有任何錯誤,瀏覽器稍後搜索後重定向回Controller文件。 VS中沒有顯示任何錯誤。 –