Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要生成一个随机数/字符串以附加到 URL 以防止缓存图像。
哪个会更好:
Math.random()或者UIDUtil.createUID()
Math.random()
UIDUtil.createUID()
我知道这很可能会归结为用户偏好,但我想了解每个人对使用哪一个以及为什么使用的意见。
我经常看到使用的 cachebuster 是:
new Date().getTime()
Math.random() 当然有可能不生成唯一的 url(但不太可能)。除此之外无所谓。