Login Register Help
API Documentation
Choose a stylesheet:

Constructordojo.__IoArgs

dojo.require("dojo._base.xhr");
defined in dojo/_base/xhr.js

 

Jump to PropertiesFunctionsBack to top

Functionerror(response: Object, ioArgs: dojo.__IoCallbackArgs)
Defined by
This function will be called when the request fails due to a network or server error, the url is invalid, etc. It will also be called if the load or handle callback throws an exception, unless djConfig.debugAtAllCosts is true. This allows deployed applications to continue to run even when a logic error happens in the callback, while making it easier to troubleshoot while in debug mode.
Functionhandle(loadOrError: String, response: Object, ioArgs: dojo.__IoCallbackArgs)
Defined by
This function will be called at the end of every request, whether or not an error occurs.
Functionload(response: Object, ioArgs: dojo.__IoCallbackArgs)
Defined by
This function will be called on a successful HTTP response code.

Jump to FunctionsPropertiesBack to top

Defined by
Contains properties with string values. These properties will be serialized as name1=value2 and passed in the request.
Defined by
DOM node for a form. Used to extract the form values and send to the server.
Defined by
Acceptable values depend on the type of IO transport (see specific IO calls for more information).
Defined by
Default is false. If true, then a "dojo.preventCache" parameter is sent in the request with a value that changes with each request (timestamp). Useful only with GET-type requests.
Defined by
Milliseconds to wait for the response. If this time passes, the then error callbacks are called.
Defined by
URL to server endpoint.