Universeorange.com/Docs/
get(String url, Function script);
String
url
is theget
url
Theget
must return ajson
object
Function
script
is afunction
and fires whenget
has returned the requested data.
ready(() => {
get('/users/', (url, response) => {
priya.debug(response);
});
});
Will result in:
{
"html": "/users/",
"method": null,
"target": null,
"script": null,
"link": null
}
Last modified: 2021-06-07
© 2021 universeorange.com