-
Notifications
You must be signed in to change notification settings - Fork 59
/
examples.js
51 lines (42 loc) · 1.54 KB
/
examples.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
var xhr = new (require("ti.xhr"))();
// Normal plain old request without caching
xhr.GET({
url: "http://freegeoip.net/json/",
onSuccess: onSuccessCallback,
onError: onErrorCallback
});
// Normal plain old request with a 5mins caching
xhr.GET({
url: "http://freegeoip.net/json/",
onSuccess: onSuccessCallback,
onError: onErrorCallback,
extraParams: { ttl: 5 }
});
// Request a remote image with 60 mins caching
// note that I am passing the contentType as an image, this tells the library to
// respond with binary content instead of plain text
xhr.GET({
url: "http://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Apple_logo_black.svg/500px-Apple_logo_black.svg.png",
onSuccess: onImageSuccess,
onError: onErrorCallback,
extraParams: { ttl: 60, contentType: "image/png" }
});
function onSuccessCallback(e) {
// Handle your request in here
// the module will return an object with two properties
// data (the actual data retuned
// status ('ok' for normal requests and 'cache' for requests cached
Titanium.API.info(e);
};
function onImageSuccess(e) {
// Assign the image blob located in e.data directly to an image view
};
function onErrorCallback(e) {
// Handle your errors in here
};
// Delete cached image file
xhr.clear("http://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Apple_logo_black.svg/500px-Apple_logo_black.svg.png");
// Delete all expired documents (this method should be called at least once in your app)
xhr.clean();
// Delete all cached documents (expired or not, be very careful using this method)
xhr.purge();