All:
When I try to solve the problem that when load image from cache, I got some answers from this post:How to force a web browser NOT to cache images
It talks about add a timestamp to the src like
<img src="picture.jpg?1222259157.415" alt="">
But in my case, it is not a direct image url, it is avatar url from github like:
<img src="https://avatars.githubusercontent.com/u/614?v=3" alt="">
When I add a timestamp 79399.92599998368 to it, it becomes:
<img src="https://avatars.githubusercontent.com/u/614?v=379399.92599998368" alt="">
I wonder why this src can still be correctly recognized and get the image even the url changed? Could anyone tell me why this works and how browser deal with this?
Thanks
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…