我应该如何为 iOS 设计 ASP.NET 页面来上传二进制数据块?
规范:iOS 应用程序需要将二进制数据(文件的 5k 部分)POST 到 ASP.NET Web 应用程序。例如:POST 到 http://mydomain.com/Receive.aspx?fileKey=2 此 POST 的内容是一个 5k byte[] 数组。
由于不相关的问题,无法调用 Web 服务,因此这只是一个普通的 ASP.NET 请求。
由于我的 iOS 经验很少,我应该如何设计这个页面,以便 iOS 开发人员相对容易使用,如果有任何 iOS 开发人员阅读本文,您如何为其设置 ASIHTTPRequest
?
The spec: iOS app needs to POST binary data (a 5k section of a file) to an ASP.NET web application. For example: POST to http://mydomain.com/Receive.aspx?fileKey=2 with the contents of this POST being a 5k byte[] array.
Due to unrelated issues, web service call is not possible, so this is just a plain ASP.NET request.
Having little iOS experience, how should I design this page so that it's relatively easy for the iOS devs to use, and if there are any iOS devs reading this, how do you set up the ASIHTTPRequest
for it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其创建为 MVC 控制器中的方法。您可以获得非常清晰的 url 的好处,并且它将连接 post 变量以通过该方法。
这里有一个很好的例子 在 ASP.NET 中发布和读取二进制数据MVC
注意方法原型如何有一个字节数组?
Create this as a method in an MVC controller. You get the benefit of very clear url and also it will wire up the post variables to come through the method.
A good example is here Post and read binary data in ASP.NET MVC
Note how the method prototype has a byte array?