我正在尝试在我的视图中显示图像。
我写了一个图像助手:
public static class Helpers
{
public static FileContentResult Image(this HtmlHelper htmlHelper,
byte[] imageData, string mimeType)
{
return new FileContentResult(imageData, mimeType);
}
}
myImage - 是一个字节数组。
<img src="@Html.Image(myImage, "image/jpeg")" />
但我的图像没有显示...
当我查看源代码时,我看到的是:
<img src="System.Web.Mvc.FileContentResult">
任何人?:)