Documentation

get

issues a GET Ajax request to the server

promise get(string url, [object params,function callback] );

Parameters

urlstringthe url to load
paramsobjectthe hash of parameters that need sending to the server
callbackfunctionthe callback function

Returns

promisedata "promise" object

See also

Example

webix.ajax().get("data.php", { filter : "123" }, function(text, xml, xhr){
    //response
    alert(text);
});

Details

Callback

The callback function takes 3 parameters:

  • text - the full text of the response
  • xml - the response parsed as xml, if applicable
  • xhr - an xmlHttpRequest object

Return value

The method returns a promise object than contains the eventual result of an Ajax request.

More information on Webix and Promiz.js usage can be found at:

Back to top