Zakładam, że wiesz, jak złożyć natywną prośbę XHR (możesz odświeżyć tutaj i tutaj )
Ponieważ każda przeglądarka, która obsługuje natywne obietnice, będzie również obsługiwać xhr.onload
, możemy pominąć wszelkie onReadyStateChange
wygłupy. Cofnijmy się i zacznijmy od podstawowej funkcji żądania XHR za pomocą wywołań zwrotnych:
function makeRequest (method, url, done) {
var xhr = new XMLHttpRequest();
xhr.open(method, url);
xhr.onload = function () {
done(null, xhr.response);
};
xhr.onerror = function () {
done(xhr.response);
};
xhr.send();
}
// And we'd call it as such:
makeRequest('GET', 'http://example.com', function (err, datums) {
if (err) { throw err; }
console.log(datums);
});
Hurra! Nie wiąże się to z niczym strasznie skomplikowanym (jak niestandardowe nagłówki lub dane POST), ale wystarczy, abyśmy posunęli się naprzód.
Konstruktor obietnicy
Możemy zbudować taką obietnicę:
new Promise(function (resolve, reject) {
// Do some Async stuff
// call resolve if it succeeded
// reject if it failed
});
Konstruktor obietnicy przyjmuje funkcję, która otrzyma dwa argumenty (nazwijmy je resolve
i reject
). Można je traktować jako oddzwanianie, jeden dla sukcesu, a drugi dla niepowodzenia. Przykłady są niesamowite, zaktualizujmy za makeRequest
pomocą tego konstruktora:
function makeRequest (method, url) {
return new Promise(function (resolve, reject) {
var xhr = new XMLHttpRequest();
xhr.open(method, url);
xhr.onload = function () {
if (this.status >= 200 && this.status < 300) {
resolve(xhr.response);
} else {
reject({
status: this.status,
statusText: xhr.statusText
});
}
};
xhr.onerror = function () {
reject({
status: this.status,
statusText: xhr.statusText
});
};
xhr.send();
});
}
// Example:
makeRequest('GET', 'http://example.com')
.then(function (datums) {
console.log(datums);
})
.catch(function (err) {
console.error('Augh, there was an error!', err.statusText);
});
Teraz możemy skorzystać z mocy obietnic, łącząc wiele połączeń XHR (i .catch
spowoduje to błąd przy każdym połączeniu):
makeRequest('GET', 'http://example.com')
.then(function (datums) {
return makeRequest('GET', datums.url);
})
.then(function (moreDatums) {
console.log(moreDatums);
})
.catch(function (err) {
console.error('Augh, there was an error!', err.statusText);
});
Możemy to jeszcze poprawić, dodając zarówno parametry POST / PUT, jak i niestandardowe nagłówki. Użyjmy obiektu opcji zamiast wielu argumentów z podpisem:
{
method: String,
url: String,
params: String | Object,
headers: Object
}
makeRequest
teraz wygląda mniej więcej tak:
function makeRequest (opts) {
return new Promise(function (resolve, reject) {
var xhr = new XMLHttpRequest();
xhr.open(opts.method, opts.url);
xhr.onload = function () {
if (this.status >= 200 && this.status < 300) {
resolve(xhr.response);
} else {
reject({
status: this.status,
statusText: xhr.statusText
});
}
};
xhr.onerror = function () {
reject({
status: this.status,
statusText: xhr.statusText
});
};
if (opts.headers) {
Object.keys(opts.headers).forEach(function (key) {
xhr.setRequestHeader(key, opts.headers[key]);
});
}
var params = opts.params;
// We'll need to stringify if we've been given an object
// If we have a string, this is skipped.
if (params && typeof params === 'object') {
params = Object.keys(params).map(function (key) {
return encodeURIComponent(key) + '=' + encodeURIComponent(params[key]);
}).join('&');
}
xhr.send(params);
});
}
// Headers and params are optional
makeRequest({
method: 'GET',
url: 'http://example.com'
})
.then(function (datums) {
return makeRequest({
method: 'POST',
url: datums.url,
params: {
score: 9001
},
headers: {
'X-Subliminal-Message': 'Upvote-this-answer'
}
});
})
.catch(function (err) {
console.error('Augh, there was an error!', err.statusText);
});
Bardziej kompleksowe podejście można znaleźć w MDN .
Alternatywnie możesz użyć interfejsu API pobierania ( polyfill ).