我有如下控制器方法将图像发送到 MVC 视图以显示
public FileResult ShowImage(GuidID)
{
DataServiceClient client = new DataServiceClient ();
AdviserImage result;
result = client.GetAdviserImage(ID);
return File(result.Image, "image/jpg" );
}
在我看来,我正在使用
<img src="<%= Url.Action("ShowImage", "Adviser", new { ID = Model.AdviserID }) %>" alt="<%:Model.LicenceNumber %>" />
显示图像
但有些 ids 没有图像并返回 null,我想检查文件结果是否为 null with view,如果它的 null 不显示图像。