dojo._ioAddQueryToUrl
<script src="../../js/dojo.js"></script>
defined in dojo/_base/xhr.js
Adds query params discovered by the io deferred construction to the URL. Only use this for operations which are fundamentally GET-type operations.
parameter | type | description |
---|
ioArgs | dojo.__IoCallbackArgs | field | type | description |
---|
.args | Object | the original object argument to the IO call. | .canDelete | Boolean | For dojo.io.script calls only, indicates whether the script tag that represents the request can be deleted after callbacks have been called. Used internally to know when cleanup can happen on JSONP-type requests. | .handleAs | String | The final indicator on how the response will be handled. | .id | String | For dojo.io.script calls only, the internal script ID used for the request. | .json | Object | For dojo.io.script calls only: holds the JSON response for JSONP-type requests. Used internally to hold on to the JSON responses. You should not need to access it directly -- the same object should be passed to the success callbacks directly. | .query | String | For non-GET requests, the name1=value1&name2=value2 parameters sent up in the request. | .url | String | The final URL used for the call. Many times it will be different than the original args.url value. | .xhr | | For XMLHttpRequest calls only, the XMLHttpRequest object that was used for the request. |
|