什么是 ASIHTTPRequest?

发布于 2024-10-20 18:11:40 字数 77 浏览 6 评论 0原文

什么是 ASIHTTPRequest?我们如何在 iPhone 应用程序中使用它?我们需要包含哪些文件? Apple 是否提供这方面的文件?

What is ASIHTTPRequest? how do we use it in an iphone application? what are the files we need to include? Does Apple provide files for this?

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

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

发布评论

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

评论(3

堇色安年 2024-10-27 18:11:40

阅读ASIHTTP 从这里你将能够知道它是什么以及如何使用它......它用于从服务器获取请求并将请求发送到服务器

祝你好运!

Read the ASIHTTP from here you will be able to know what is it and how to use it....it is use to get the request from the server and post request to server

Good Luck!

笙痞 2024-10-27 18:11:40

什么是 ASIHTTPRequest?

ASIHTTPRequest 是 CFNetwork API 的一个易于使用的包装器,它使与 Web 服务器通信的一些较繁琐的方面变得更加容易。它是用 Objective-C 编写的,可在 Mac OS X 和 iPhone 应用程序中运行。

—— 来自 https://allseeing-i.com/ASIHTTPRequest/

What is ASIHTTPRequest?

ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that makes some of the more tedious aspects of communicating with web servers easier. It is written in Objective-C and works in both Mac OS X and iPhone applications.

—— from https://allseeing-i.com/ASIHTTPRequest/

遗忘曾经 2024-10-27 18:11:40

一个(BSD 许可的)包装器,以方便 CFNetwork 的使用。通常,它用于处理HTTP请求。

该文档解释了如何使用它。
由于 ASIHTTPRequest 不是 Apple 产品,因此 Apple 不提供相关文件。

这是 ASIHTTPRequest 文档页面所说的内容。

ASIHTTPRequest 是 CFNetwork API 的一个易于使用的包装器,它使与 Web 服务器通信的一些较繁琐的方面变得更加容易。它是用 Objective-C 编写的,可在 Mac OS X 和 iPhone 应用程序中运行。

它适合执行基本的 HTTP 请求并与基于 REST 的服务(GET / POST / PUT / DELETE)交互。包含的 ASIFormDataRequest 子类可以轻松使用 multipart/form-data 提交 POST 数据和文件。


另外,ASIHTTPRequest 页面说
请注意,我不再使用这个库 - 您可能需要考虑在新项目中使用其他库。 :)

RestKit 可能是一个替代方案。

A (BSD licensed) wrapper to facilitate the use of CFNetwork. Commonly, it is used to deal with HTTP requests.

The documentation explains how to use it.
As ASIHTTPRequest is not an Apple product, Apple doesn't provide files for this.

This is what the ASIHTTPRequest documentation page says.

ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that makes some of the more tedious aspects of communicating with web servers easier. It is written in Objective-C and works in both Mac OS X and iPhone applications.

It is suitable performing basic HTTP requests and interacting with REST-based services (GET / POST / PUT / DELETE). The included ASIFormDataRequest subclass makes it easy to submit POST data and files using multipart/form-data.


Also, ASIHTTPRequest page says
Please note that I am no longer working on this library - you may want to consider using something else for new projects. :)

RestKit might be an alternative.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文