WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2022-06-30 1759050be9578fb3e376f156a3ace42fa4250193
App本地存储,允许全部清空
1 files modified
11 ■■■■■ changed files
common/LocalStorage.js 11 ●●●●● patch | view | raw | blame | history
common/LocalStorage.js
@@ -59,6 +59,17 @@
        return matches;
    }
    // 清除本地存储工具保存的所有数据
    cleanAll(){
        const info = Taro.getStorageInfoSync();
        const prefixReg = /^AiSim\.[a-zA-Z]+@/;
        info.keys.forEach(storageKey => {
            if (prefixReg.test(storageKey)) {
                Taro.removeStorageSync(storageKey);
            }
        });
    }
}
export const $localStorage = new LocalStorage();