You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+21-9
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,12 @@
1
1
# ti.xhr:
2
2
ti.xhr is a wrapper around Titanium's HTTPClient. It works perfectly with REST API endpoints and has a built in cache system that you can use for your requests. But it also can be use for any HTTP requests, you can even cache remote images.
3
-
4
-
5
-
> Version 3.0.0 is incompatible with any previous version. Only slight refactor is needed to make the method arguments a single object instead.
6
-
7
-
8
3
## Installation.
9
4
Use NPM to install ti.xhr.
10
5
11
-
Run this command in your `lib` folder (Alloy) or `Resources` folder (classic).
6
+
Run this command in your `lib` folder (Alloy) or `Resources` folder (classic) or in the root directory of your app when using Webpack.
12
7
```
13
8
npm i ti.xhr
14
9
```
15
-
16
-
Or install it by download the latest release from the `dist` folder and unpackage it in your root directory.
17
-
18
10
## Usage:
19
11
In your alloy.js (or elsewhere), call:
20
12
@@ -72,6 +64,7 @@ If you do specify options in an API call, it will not ignore global options. Thi
72
64
*`returnXML` (default `false`) - Do you expect XML returned, put this to `true`
73
65
*`debug` (default `false`) - Do you want `Ti.API.info` to show API calls made
74
66
*`requestHeaders` (default `[]`) - Add custom request headers to the request
67
+
*`promise` (default `false`) - Returns a Promise when `true`
75
68
76
69
For some examples please check out the [examples.js](https://github.com/topener/XHR/blob/master/examples.js) file. Or browse around the [ti.xhr.js](https://github.com/topener/XHR/blob/master/ti.xhr.js) file. You can find in there support for GET, POST, PUT, PATCH and DELETE
77
70
@@ -95,6 +88,25 @@ This will set the requestHeader like you would do previously:
If you want to use promises you can set the `promise` property, best would be to use the `setStaticOptions` method for that so you never have to configure it again.
93
+
94
+
```javascript
95
+
xhr.setStaticOptions({
96
+
promise:true
97
+
});
98
+
```
99
+
Then every call returns a promise, which you can handle using `await` or `then` as with all promises.
100
+
101
+
```javascript
102
+
await result =xhr.GET({});
103
+
104
+
xhr.GET({}).then(result=> {
105
+
106
+
});
107
+
```
108
+
Promises work with all supported methods. Don't forget to add error handling.
109
+
98
110
## Helpers
99
111
Apart from the RESTful way of interacting with your API endpoints, this module also includes the following helper methods:
0 commit comments