小编典典

XMLHttpRequest中不同的readystate是什么意思,我该如何使用它们?

javascript

XMLHttpRequest有5 readyStates,而我只用了1 s(最后一个4)。

其他用途是什么?我可以在哪些实际应用中使用它们?


阅读 530

收藏
2020-05-01

共1个答案

小编典典

readyState值的完整列表为:

State  Description
0      The request is not initialized
1      The request has been set up
2      The request has been sent
3      The request is in process
4      The request is complete

实际上,除了4之外,几乎几乎不使用它们中的任何一个。

_些XMLHttpRequest实现可能使您在responseTextwhen中看到部分接收到的响应readyState==3,但这不是普遍支持的,因此不应依赖。

2020-05-01