在Angular的index.html文件中添加以下meta标签可以解决不缓存的问题:
My Angular App
在上述代码中,标签用于设置不缓存的HTTP头信息。
Cache-Control
设置为no-cache, no-store, must-revalidate
表示不缓存、不存储、必须重新验证。Pragma
设置为no-cache
表示不使用缓存。Expires
设置为0
表示立即过期。
这样设置后,每次加载index.html文件时都会强制请求最新的版本,而不会使用缓存的版本。