The type of event.
可选
data: any(Optional) Data to pass to the callback. If multiple parameters p1, p2, p3, ... need to be passed, use an array structure such as [p1, p2, p3, ...]. If a single parameter p needs to be passed and p is an array, use a structure such as [p]. For other single parameters p, you can directly pass parameter p. If data is Event.EMPTY, it means passing an Event object to the callback function. Note that it is not passing Event.TEMP, but an independent Event object.
True if there are listeners for this event type, false otherwise.
The type of event.
The listener function.
This EventDispatcher object.
The type of event.
The execution scope of the event listener function.
可选
listener: FunctionThe listener function.
可选
args: any[]This EventDispatcher object.
可选
type: string(Optional) The type of event. If the value is null, all types of listeners on this object are removed.
This EventDispatcher object.
The type of event.
The listener function.
This EventDispatcher object.
The type of event.
The execution scope of the event listener function.
The listener function.
可选
args: any[](Optional) The callback parameters of the event listener function.
This EventDispatcher object.
The type of event.
The listener function.
This EventDispatcher object.
The type of event.
The execution scope of the event listener function.
The listener function.
可选
args: any[](Optional) The callback parameters of the event listener function.
This EventDispatcher object.
The URL to request. Most browsers implement a same-origin security policy and require that the URL has the same hostname and port as the script.
(default = null) The data to be sent.
(default = "get") The HTTP method used for the request. Values include "get", "post", "head".
(default = "text") The response type from the web server, can be set to "text", "json", "xml", "arraybuffer".
可选
headers: string[](default = null) The header information for the HTTP request. Parameters are in the form of a key-value array: key is the name of the header, should not include whitespace, colon, or newline; value is the value of the header, should not include newline. For example ["Content-Type", "application/json"].
En
The
HttpRequest
class encapsulates the HTMLXMLHttpRequest
object to provide full access to the HTTP protocol, including the ability to make POST and HEAD requests as well as regular GET requests.HttpRequest
only provides asynchronous responses from web servers and can return content in either text or binary form.HttpRequest
object for each request, as each call to the send method of this object will clear previously set data and reset the HTTP request status. This can cause previously unreturned responses to be reset, resulting in the loss of response results from previous requests.Zh
HttpRequest
类通过封装 HTMLXMLHttpRequest
对象提供了对 HTTP 协议的完全访问,包括发送 POST 和 HEAD 请求以及普通的 GET 请求的能力。HttpRequest
只以异步形式返回 Web 服务器的响应,并且能够以文本或二进制形式返回内容。HttpRequest
对象,因为每次调用该对象的 send 方法时,都会清空之前设置的数据,并重置 HTTP 请求的状态,这会导致之前还未返回响应的请求被重置,从而得不到之前请求的响应结果。