1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta
- name="viewport"
- content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover"
- />
- <title>清理缓存</title>
- </head>
- <body>
- <h2>缓存</h2>
- <p>缓存是使用微信过程中产生的临时数据,清理缓存不会影响微信的正常使用。</p>
- <button type="button" onclick="clearAll()">清理</button>
- <script src="./static/js/vconsole.min.js"></script>
- <script src="./static/js/storage.min.js"></script>
- <script>
- // https://wx.palmnest.com/super_cloud/wx/main_debug/index.html
- // init vConsole
- var vConsole = new VConsole();
- console.log("Hello vConsole");
- const storage = window.Storage;
- console.log(storage);
- document.addEventListener("DOMContentLoaded", function () {
- console.log("DOMContentLoaded");
- });
- function clearAll() {
- storage.clear();
- storage.session.clear();
- }
- </script>
- </body>
- </html>
|