浏览器如何发送Ajax请求

发布于 2024-10-16 19:01:36 字数 80 浏览 2 评论 0原文

我想问一下浏览器如何发送ajax请求我的意思是ajax请求的格式是什么。那么浏览器发送的AJAX请求的实际格式是什么呢?

提前致谢

I want to ask you how the browser sends ajax request i mean what is the format of ajax request. So what is actual format of AJAX request sent by browser.

Thanks in advance

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

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

发布评论

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

评论(3

伪装你 2024-10-23 19:01:36

如果您安装了 Firefox 和 Firebug,您可以亲自查看:

http://codeclimber.net.nz/archive/2007/08/01/How-to-debug-XmlHttpRequest-with-Firebug.aspx

If you install Firefox and Firebug you can see for yourself:

http://codeclimber.net.nz/archive/2007/08/01/How-to-debug-XmlHttpRequest-with-Firebug.aspx

一梦浮鱼 2024-10-23 19:01:36

这是一个标准的 HTTP 请求 - 就像浏览器发出的任何其他请求一样。

您可以阅读有关 XMLHttpRequest 调用以及 维基百科上的 HTTP 请求

It's a standard HTTP request - just like any other request the browser makes.

You can read more about the XMLHttpRequest call and indeed the structure of a HTTP request on WikiPedia.

痞味浪人 2024-10-23 19:01:36

AJAX 是异步 JavaScript 和 XML 的简写,没有定义数据传输方式的标准。
由于浏览器主要设计为 HTTP 客户端,因此您应该研究 GET 和 POST,或许还可以研究 RESTful Web 服务的 PUT 和 DELETE。

AJAX is shorthand for Asynchronous JavaScript and XML and does not define a standard on how the data is transferred.
Because the browsers are designed primarily as HTTP clients you should study GET and POST and maybe PUT and DELETE for RESTful web services.

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