Skip to content

Instantly share code, notes, and snippets.

@roman0x58
Created May 17, 2017 17:22
Show Gist options
  • Save roman0x58/d22d2555de6e9bd2e703461b37108567 to your computer and use it in GitHub Desktop.
Save roman0x58/d22d2555de6e9bd2e703461b37108567 to your computer and use it in GitHub Desktop.
simple xhr request
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