Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 MVC。我需要上传图像并将其显示在同一页面中。我已上传图像并将图像存储在本地文件夹中。如何使用mvc显示本地文件夹文件中的图像
最好的方法是创建一个动作,从文件夹中加载文件并返回它。
使用FileContentResult:
FileContentResult
public FileContentResult Display(string filename) { byte[] byteArray = GetImageFromDisk(filename); return new FileContentResult(byteArray, "image/jpeg"); }
以上是一个非常简单的示例,可以帮助您入门。