关于在 MVC 2 中处理图像上传的几个简单问题

发布于 2024-11-01 02:25:03 字数 221 浏览 1 评论 0原文

我有几个关于如何在 ASP.NET MVC 2 中处理图像上传的简单问题:

  1. 我将为它们的传入类型添加什么?我想绑定到自定义编辑模型,因此我不确定是否只需要使用 byte[] 参数,或者更具体的参数。

  2. 我需要将它们的 MIME 类型与它们一起存储吗?如果是这样,我如何通过上传过程获取它?

谢谢!

I have a couple of simple questions about how to handle image uploads in ASP.NET MVC 2:

  1. What would I put for their incoming types? I want to bind to a custom edit model, so I'm not sure if I simply need to use byte[] parameters, or something more specific.

  2. Do I need to store their MIME types along side them? If so, how would I obtain that through the upload process?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

女中豪杰 2024-11-08 02:25:03
  1. 请查看以下博客文章。您应该使用 HttpPostedFileBase 而不是 byte[]
  2. 是的,您需要存储 MIME 类型,除非您在将这些图像上传到相同图像类型时执行一些转换,否则您以后将无法提供它们。
  1. Take a look at the following blog post. You should use HttpPostedFileBase instead of byte[].
  2. Yes, you need to store the MIME type unless you perform some conversion when those images are uploaded to the same image type or you will not be able to serve them later.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文