chercher la réponse.json() donne responseData = undefined

Lors de l'utilisation de fetch:

  fetch(REQUEST_URL, {
      method: 'get',
      dataType: 'json',
      headers: {
        'Accept': 'application/json',
        'Content-Type': 'application/json'
      }
    })
    .then((response) => 
      {
        response.json() //<< This is the problem
      })
    .then((responseData) => { //responseData = undefined

        console.log(responseData);
     });
     }).catch(function(err) {
        console.log(err);
      })
     .done();

Les ouvrages suivants, travaux, savez-vous pourquoi? :

    JSON.parse(response._bodyText)
InformationsquelleAutor Chris G. | 2015-10-20