gpt4 book ai didi

image - MVC3 URL.Action 不在 img 标签中呈现我的图像

转载 作者:行者123 更新时间:2023-12-01 10:09:19 26 4
gpt4 key购买 nike

我有一张图片在我看来,如:

    <img width="150" height="150" scr="@Url.Action("GetImage", "Item")" />

我的 Controller ItemController 有这个方法:

    public FileContentResult GetImage(){
var model = _itemService.GetItemImage(1);
if(model != null && model.ImageData != null){
return File(model.ImageData, model.ImageMimeType);
}
return null;
}

当 View 呈现时,我的图像得到以下标记,但没有呈现图像:

    <img width="150" height="150" scr="/MyApp/ItemManagement/GetImage"/>

如果我在浏览器中输入这个 url 'http://localhost/MyApp/ItemManagement/GetImage',我会得到图像。我不确定这有什么问题。有人可以指出我的代码有什么问题吗?

提前致谢。杰夫

最佳答案

图片属性应该是src...?

关于image - MVC3 URL.Action 不在 img 标签中呈现我的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7234733/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com