Is there a way to force browsers to refresh/download images?

后端 未结 14 2213
囚心锁ツ
囚心锁ツ 2020-11-29 01:21

I have a problem where users are reporting that their images aren\'t being uploaded and the old ones are still there. On closer inspection the new images are there, they jus

14条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-29 01:49

    If you look at the data that is exchanged between your browser and the server, you'll see that the browser will send a HTTP HEAD request for the images. The result will contain the modification time (but not the actual image data). Make sure that this time changes if the image changes on the server and the browser should download the image again.

提交回复
热议问题