Interfejs
nsIJSXMLHttpRequest
opisuje obserwatory zdarzeń klasy XMLHttpRequest
. Pozwala to aplikacji na monitorowanie żądania HTTP dotyczących informacji postępu, błędów oraz ukończeniu procesu ładowania podczas pobierania dokumentu HTTP w sposób asynchroniczny.
Please add a summary to this article.
Last changed in Gecko 1.8.1 (Firefox 2 / Thunderbird 2 / SeaMonkey 1.1)
Dziedziczy z: nsISupports
Ostrzeżenie: Interfejs ten może być używany wyłącznie z kodu JavaScript, a nie z niezależnego kodu.
Atrybuty
Atrybut | Typ | Opis |
onload
| nsIDOMEventListener
| Wywoływany po pełnym załadowaniu dokumentu HTTP. Zdarzenie wysyła do odbiorcy swój atrybut target ustawiony na XMLHttpRequest po zakończeniu ładowania.
|
onerror
| nsIDOMEventListener
| Called when an error occurs while attempting to retrieve the HTTP document. Check the status attribute of the XMLHttpRequest specified by the target attribute in order to determine which HTTP error occurred.
|
onprogress
| nsIDOMEventListener
| Called periodically while the document is being loaded. The event sent to the receiver has a position attribute indicating how far through the document the process is, as well as a totalSize attribute indicating the total size of the document. In addition, it has its target attribute set to the XMLHttpRequest corresponding to the progress notification.
|
onreadystatechange
| nsIOnReadyStateChangeHandler
| Wywoływany, gdy readyState ulegnie zmianie. What does this mean?
|
Uwagi
You must call open()
on the XMLHttpRequest
before setting any event listeners on it.