docsify/src/ajax.js
2016-11-20 15:56:37 +08:00

10 lines
203 B
JavaScript

export default function (url, options = {}) {
const xhr = new XMLHttpRequest()
xhr.open(options.method || 'get', url)
xhr.send()
return {
then: cb => xhr.addEventListener('load', cb)
}
}