vue开发过程中发现内存一直往上飙,360时不时的提示下清理内存,测试发现每刷新一次页面内存就增加1%。
清掉浏览器的缓存等各种数据以后内存明显变小,刷新页面导致内存爆表。
这种问题着实不应该存在,记得在head中有可以清缓存的方式,加上之后果然不会刷新一次加1%的内存了,甚至可以一定程度上缓解vue的内存占用率大的问题,代码如下:
<meta http-equiv="pragma" content="no-cache" /> <meta http-equiv="content-type" content="no-cache, must-revalidate" /> <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" /> <meta http-equiv="expires" content="Wed, 26 Feb 1997 08:21:57 GMT"/>
参考:https://blog.csdn.net/xuexiaodong009/article/details/39340637