Performs a get request.
The url to call.
The query string data.
The callback with the parsed data or null if the call failed.
Flag indicating if the call should be synchronous or not.
Performs a post request.
The url to call.
The data object to send. Will be serialized to JSON.
The callback with the parsed data or null if the call failed.
Flag indicating if the call should be synchronous or not.
Performs a generic request where the method can be specified.
The url to call.
The callback with the parsed data or null if the call failed.
The HTTP method to use.
The data to send. Should be already serialized to JSON or any other format which is supported.
Flag indicating if the call should be synchronous or not.
Generated using TypeDoc
The ajax interface is used to make ajax calls. Not supported server side. Use external API for this.