Ajax 流程从发起请求到用户看到结果?

发布于 2024-08-31 01:42:06 字数 89 浏览 5 评论 0原文

我正在寻找一个直接的列表(包含与要点相匹配的任何值得注意的信息),其中包含从启动请求对象到用户在 AJAX 中看到最终结果所涉及的单独过程?

谢谢。

I'm looking for a straight forward list(with any notable information to match the point) of the separate processes involved from initiating the request object to the user seeing the end result in AJAX?

Thanks.

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

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

发布评论

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

评论(1

半世蒼涼 2024-09-07 01:42:06

好吧,我会尝试一下。

  • 从 JavaScript 向服务器发起请求。在某种程度上,这是 XmlHttpRequest,但您最好使用 jQuery 等库来提供帮助。
  • 从服务器获取响应。通常响应是 JSON 或 HTML。不建议使用 XML,因为在 JavaScript 中解析 XML 并不有趣。
  • 更新 HTML DOM 以显示来自服务器的结果。这是非常特定于应用的。但再次使用 jQuery 或其他一些库会让这变得更容易。

Okay, I'll give it a shot.

  • Initiate a request to the server from JavaScript. At some level this is XmlHttpRequest but you are better off using a library such as jQuery to help.
  • Get a response back from the server. Usually the response is JSON or HTML. Using XML is not recommended because parsing XML in JavaScript is not fun.
  • Update the HTML DOM to show the results from the server. This is very application-specific. But again using jQuery or some other library makes this easier.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文