浏览器如何发送Ajax请求
我想问一下浏览器如何发送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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您安装了 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
这是一个标准的 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.
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.