uniapp同步快取失效的解決辦法:1、設定存,代碼為【uni.setStorageSync('storage_key', 'hello')】;2、取得目前storage的相關信息,代碼為【console. log(res.keys)】。
本教學操作環境:windows7系統、uni-app2.5.1版本,Dell G3電腦,此方法適用於所有品牌電腦。
推薦(免費):uni-app開發教學
uniapp同步快取失效的解決辦法:
存
try { uni.setStorageSync('storage_key', 'hello'); } catch (e) { // error };
取
try { const value = uni.getStorageSync('storage_key'); if (value) { console.log(value); } } catch (e) { // error };
取得目前storage
的相關資訊
try { const res = uni.getStorageInfoSync(); console.log(res.keys); console.log(res.currentSize); console.log(res.limitSize); } catch (e) { // error };
移除指定key
try { uni.removeStorageSync('storage_key'); } catch (e) { // error };
清除本機資料快取
try { uni.clearStorageSync(); } catch (e) { // error };
相關免費學習推薦:程式設計影片
以上是uniapp同步快取失效怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!