httpGet()

Method for executing an HTTP GET request. If data type is not specified, it will default to 'text'. This is equivalent to calling httpDo(path, 'GET'). The 'binary' datatype will return a Blob object, and the 'arrayBuffer' datatype will return an ArrayBuffer which can be used to initialize typed arrays (such as Uint8Array).

उदाहरण

सिंटैक्स

httpGet(path, [datatype], [callback], [errorCallback])
httpGet(path, callback, [errorCallback])

पैरामीटर्स

path
String|Request: name of the file or url to load
datatype
String: "json", "jsonp", "binary", "arrayBuffer", "xml", or "text"
callback
Function: function to be executed after httpGet() completes, data is passed in as first argument
errorCallback
Function: function to be executed if there is an error, response is passed in as first argument

Returns

Promise: A promise that resolves with the data when the operation completes successfully or rejects with the error after one occurs.

संबंधित संदर्भ