我的MVC控制器在我的ajax回调函数中将FileStreamresult作为Image / png返回,如下所示。同样需要分配给<img src="Image here!!"/>
。请让我知道我该怎么做。
fileResult=new FileStreamResult(new MemoryStream(byte), "image/png");
答案 0 :(得分:1)
您可以使用控制器和操作返回FileStreamResult
:
public class ImageController : Controller
{
public ActionResult Avatar()
{
return new FileStreamResult(new MemoryStream(byte), "image/png");
}
}
在您的img
标记中,您可以指向该控制器:
<img src="/image/avatar"/>