Fetch API Returning 304 Not Modified in Angular

87 Views Asked by At

I created an Angular frontend and a .Net backend, API call from my Angular client that was initially working has stopped working. The only change I made was change the structure of the object sent to frontend. I have cleared my cache, still issue persist.

fetch(URL) 
  .then(response => response.json())
  .then(data => {

    console.log(data)

})
0

There are 0 best solutions below