get
sends a GET AJAX request to the server
promise get(string url, [object params,function callback] );
string | the URL to load | | params |
object | the object with parameters that need sending to the server | | callback |
function | the callback function |
| promise | data "promise" object |
Example
webix.ajax().get("data.php", { filter : "123" }).then(function(data){
// response
console.log(data.text());
});
Details
Callback
The callback function takes 3 parameters:
- text - the full text of the response from the server
- data - the object with methods for getting data as plain text, JSON, and XML
- xhr - an xmlHttpRequest-object
Return value
The method returns a promise that contains the eventual result of an Ajax request.
More information on Webix and Promiz.js usage can be found at:
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support,
connect with other developers, and share your feedback there.