XMLHttpRequest 与 HttpRequest
有谁知道,XMLHttpRequest
使网页能够执行哪些使用普通 HttpRequest
无法完成的操作?
Does anyone know, what an XMLHttpRequest
enables a web page to do, which cannot be done using a normal HttpRequest
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
XMLHttpRequest
是一个标准的 javascript 对象,允许您从javascript 中的浏览器。HttpRequest
是一个服务器端对象,代表对服务器的请求。总而言之,一个在浏览器中工作,另一个在 Web 服务器中工作。他们还扮演着完全不同的角色。
XMLHttpRequest
用于在浏览器中获取 Web 资源。HttpRequest
表示传入请求。XMLHttpRequest
is a standard javascript object that allows you to make HTTP Requests from the browser in javascript.HttpRequest
is a server side object that represents a request to the server.In summary - one works in the browser, the other in the web server. They also have completely different roles.
XMLHttpRequest
is for fetching web resources within the browser.HttpRequest
represents an incoming request.虽然标准 HTTP 请求进行“同步”调用,并且必须等待响应并进行页面重新加载(您总是会显示一个新的 html 页面),但 XMLHttpRequest 可以使用同步(不典型)和异步(更好的方式) )无需重新加载页面。您可以使用 javascript 请求响应,响应通常是 xml 或 json 数据,您可以使用 js 处理它们,并通过使用操作文档的 dom 方法来更新页面的部分内容...所以您不需要需要重新加载整个页面,因为所有这些都在“后台”运行
while the standard HTTP request makes a 'synchronous' call and must wait for the response and makes a page-reload (you always get a new html-page to display) XMLHttpRequest may be used sync (not typical) and async (the better way) without a page-reload. you may ask for the response with javascript and the response is usually xml- or json-data that you may process with js and update parts of your page through the use of dom-methods that manipulate your document ... so you don't need an entire page reload because all of that is running in the 'background'