XMLHttpRequest 与 HttpRequest

发布于 2024-12-23 22:22:02 字数 87 浏览 1 评论 0原文

有谁知道,XMLHttpRequest 使网页能够执行哪些使用普通 HttpRequest 无法完成的操作?

Does anyone know, what an XMLHttpRequest enables a web page to do, which cannot be done using a normal HttpRequest?

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

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

发布评论

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

评论(2

萌辣 2024-12-30 22:22:02

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.

百变从容 2024-12-30 22:22:02

虽然标准 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'

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