Created
May 17, 2017 17:22
-
-
Save roman0x58/d22d2555de6e9bd2e703461b37108567 to your computer and use it in GitHub Desktop.
simple xhr request
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const request = (url) => { | |
const xhr = new XMLHttpRequest() | |
const process = (method, body) => { | |
xhr.open(method, url, true) | |
xhr.setRequestHeader('Content-Type', 'application/json;charset=UTF-8') | |
xhr.send(body) | |
return new Promise((resolve, reject) => { | |
xhr.onreadystatechange = xhr.onerror = () => { | |
if (xhr.readyState === XMLHttpRequest.DONE) xhr.status >= 200 && xhr.status < 300 ? | |
resolve(JSON.parse(xhr.responseText)) : reject(xhr.responseText) | |
} | |
xhr.ontimeout = () => reject('The request is timed out.') | |
}) | |
} | |
return ['post', 'get'] | |
.map((k) => ({ [k]: (body) => process(k, body) })) | |
.reduce((acc, v) => Object.assign(acc, v), {}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment