如何在 Objective-C 中使用 XMLHttpRequest?
我正在为我的表兄弟创建易于使用的 kannada mac 漫画阅读器。我能够提取漫画页面,但许多元内容使用 XMLHttpRequest
交换网页和服务器。
我发现使用 XMLHttpRequest
遇到困难,有人能告诉我如何使用它吗?
I'm creating easy to use kannada comic reader on mac for my cousins. I'm able to pull the comic pages, but lot of meta content exchanged webpage and server using XMLHttpRequest
.
I'm finding difficulties use XMLHttpRequest
, could anyone tell me how can I use it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与简单 XMLHttpRequest 最接近的是 从 URL 创建数据对象。
对于更高级的请求(例如,自定义标头、非 GET 的请求方法),您需要使用 NSURLConnection。无论如何,你也许应该这样做;您的应用程序将变得更加健壮并且响应速度更快。
The closest thing to a simple XMLHttpRequest is to create a data object from a URL.
For more advanced requests (e.g., custom headers, request methods that aren't GET), you'll need to use NSURLConnection. You should probably do that anyway; your application will be more robust and more responsive for it.