Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

1K
Visualizações
JavaScript fetch - Failed to execute 'json' on 'Response': body stream is locked

When the request status is greater than 400(I have tried 400, 423, 429 states), fetch cannot read the returned json content. The following error is displayed in the browser console

Uncaught (in promise) TypeError: Failed to execute 'json' on 'Response': body stream is locked

I showed the contents of the returned response object as follows:

enter image description here

But I can still use it a few months ago.

My question is as follows:

  • Is this just the behavior of the Chrome browser or the fetch standard changes?
  • Is there any way to get the body content of these states?

PS: My browser version is Google Chrome 70.0.3538.102(正式版本) (64 位)

over 4 years ago · Santiago Trujillo
3 Respostas
Responde à pergunta

0

I met this error too but found out it is not related to the state of Response, the real problem is that you only can consume Response.json() once, if you are consuming it more than once, the error will happen.

like below:

    fetch('http://localhost:3000/movies').then(response =>{
    console.log(response);
    if(response.ok){
         console.log(response.json()); //first consume it in console.log
        return response.json(); //then consume it again, the error happens

    }

So the solution is to avoid consuming Response.json() more than once in then block.

over 4 years ago · Santiago Trujillo Relatório

0

According to MDN, you should use Response.clone():

The clone() method of the Response interface creates a clone of a response object, identical in every way, but stored in a different variable. The main reason clone() exists is to allow multiple uses of Body objects (when they are one-use only.)

Example:

fetch('yourfile.json').then(res=>res.clone().json())
over 4 years ago · Santiago Trujillo Relatório

0

Response methode like 'json', 'text' can be called once, and then it locks. The posted image of response shows that body is locked. This means you have already called the 'then', 'catch'. To reslove this you can try the following.

fetch(url)
    .then(response=> response.body.json())
    .then(myJson=> console.log(myJson))

Or

fetch(url)
    .catch(response=> response.body.json())
    .catch(myJson=> console.log(myJson))
over 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda