fex-team / webuploader

It's a new file uploader solution!
http://fex.baidu.com/webuploader/
BSD 3-Clause "New" or "Revised" License
7.71k stars 2.33k forks source link

安卓手机上传图片,ASP.NET MVC ContentLength 为 0,PC端是正常的 #1266

Open 8473874 opened 9 years ago

8473874 commented 9 years ago

pc端正常 手机端上传时 HttpPostedFileBase ContentLength 为 0

8473874 commented 9 years ago

这是 微信 安卓4.4 的问题,要换成 二进制 上传,就好了。

mrt3389 commented 9 years ago

麻烦请问换成二进制后 .net如何获取数据?

8473874 commented 8 years ago

@mrt8544 Image.FromStream(cxt.Request.InputStream); 可以用Image读取request请求的二进制流信息,然后处理,详细的你可以参考下baidu的UEDIT的C#代码

mrt3389 commented 8 years ago

@8473874 谢谢,已经解决~