javascript - ajax 异步和同步的问题
我们问问大神们什么是ajax异步,什么是ajax同步,两者有什么区别,或则两者适用场合有什么不同。
回复内容:
我们问问大神们什么是ajax异步,什么是ajax同步,两者有什么区别,或则两者适用场合有什么不同。
同步异步 和 ajax有什么关系吗
Ajax是Asynchronous Javascript And XML的缩写
本身就是异步的 何谈 同步
异步就是 当前线程请求操作 后天开新线程处理 完毕后 回调结果给当前线程
同步意味着,在执行这段程序的时候,不能接着执行其他代码,放在Ajax上,就相当于,当你Ajax获取消息期间什么都干不了,一看就不科学,所以异步是为了让他在获取时可以正常运行其他部分的代码,然后callback回调处理结果就行了。
在一系列需要执行的事件队列里面:
同步操作: 需要编译器对语句一件件的执行下去,如果某个事件还没有执行完毕,那么系统就需要一直等待,直到该事件执行完毕!
异步操作: 就好比吧这个事件拉出来放到另外一队,做一个单独的事情,程序执行到这个异步的时候,会分成两部分,一部分继续执行下面的程序,另一部分会单独去执行这个异步,互不影响程序加载!
在用户角度来说,这样不会让用户感觉他在等待响应!
ajax.open方法中,第3个参数是设同步或者异步。prototype等js类库一般都默认为异步,即设为true。
先说下同步的情况下,js会等待请求返回,获取status。不需要onreadystatechange事件处理函数。而异步则需要onreadystatechange事件处理,且值为4再正确处理下面的内容。
我自己的理解是这样的,ajax同步,即向服务器请求并在此等待服务器的回应,直到服务器回应了才继续往下走;ajax异步,即向服务器发送请求后,无需等待服务器的回应,直接往后走。
举个例子说明吧。
我们假设有三句语句
method1() 需要0.5秒
$.ajax() 需要2 秒
method2() 需要0.5秒
同步:就是1执行完后,执行2的时候,阻塞,直到ajax全部结束,执行方法3 一共3秒
异步:执行完1后,2开始执行的同时,3也马上执行非阻塞,往下走。 理论全部结束 一共 2.5秒
同步=串行,异步=并行,这样子。
本来没有ajax异步和同步的说法,AJAX本身便是异步请求数据的意思,但是请求数据还有同步的方式。
即XMLHttpRequest对象包含了同步请求和异步请求两种使用方式。当年因为异步技术给开发带来了深刻影响,所以AJAX技术火了,人们也习惯把向服务器请求数据的技术称为AJAX,但实际上还有同步,只是称呼上就被叫做了AJAX同步了,约定俗成而已

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
