我不确定我是否正确使用了Web
Image类.
我有一个控制器从数据库中提取照片和一些相关信息(评论,上传日期,文件名).我想返回包含此信息的部分视图,并显示图像以及额外信息.
所以我从字节数组创建了一个新的WebImage,但是如何显示呢?
根据this article,它应该很简单
You need to work with Razor Syntax and create a variable that will
contain the image:
@{ var myImage = WebImage("/Content/myImage.jpg") // Work with the image… }
Then,in order to load the image in the page,you have to show the
variable that contains the image inside an HTML<img/>
tag:
<img src="@myImage"/>
除非它不起作用,它只输出< img src =“System.Web.Helpers.WebImage”>和调用.Write没有帮助.
有没有办法做到这一点,还是我需要将我的动作分成两个不同的动作,一个是返回照片信息,另一个是返回照片本身?