getting 304 response even with django-cors-headers

584 Views Asked by At

I installed django-cors-headers in my django application. I want to display svg file in webbrowser. For first time, its not loading properly and its showing 304 response in network.

Can anyone help me how to rectify this problem?

1

There are 1 best solutions below

0
On

This response should be fine, it just indicates that your browser has a cached version. It saves Django from having to pass back the response again.

From Wikipedia

304 Not Modified

Indicates that the resource has not been modified since the version specified by the request headers If-Modified-Since or If-None-Match. This means that there is no need to retransmit the resource, since the client still has a previously-downloaded copy.

This sounds like what you are looking for, as the SVG should still be rendered by the browser.