多个,顺序fetch()承诺

时间:2016-06-26 01:56:35

标签: javascript angularjs json promise es6-promise

我必须制作fetch()承诺序列:我一次只有1个网址,这意味着只有1 fetch()承诺。每当我收到一个json时,这个包含另一个json的url,所以我必须做出另一个fetch()的承诺。

我可以使用多个承诺,但在这种情况下,我无法执行Promise.all(),因为我没有所有网址,只有一个网址。

这个例子不起作用,它都冻结了。

function fetchNextJson(json_url) 
{
    return fetch(json_url, {
            method: 'get'
        })
        .then(function(response) {
            return response.json();
        })
        .then(function(json) {
            console.log(json);
            return json;
        })
        .catch(function(err) {
            console.log('error: ' + error);
        });
}


function getItems(next_json_url) 
{
    if (!(next_json_url)) return;

    get_items = fetchNextJson(next_json_url);

    interval = $q.when(get_items).then(function(response) {
        console.log(response);
        next_json_url = response.Pagination.NextPage.Href;
    });

    getItems(next_json_url);
}


var next_json_url = 'http://localhost:3000/one';

getItems(next_json_url);

1 个答案:

答案 0 :(得分:5)

您可以使用递归

function fetchNextJson(json_url) {
    return fetch(json_url, {
            method: 'get'
        })
        .then(function(response) {
            return response.json();
        })
        .then(function(json) {
            results.push(json);
            return json.Pagination.NextPage.Href 
                   ? fetchNextJson(json.Pagination.NextPage.Href)
                   : results
        })
        .catch(function(err) {
            console.log('error: ' + error);
        });
}


var next_json_url = 'http://localhost:3000/one';
var results = [];

fetchNextJson(json_url).then(function(res) {
  console.log(res)
})