小程序同步獲取所有本地存儲(chǔ) Object wx.getStorageInfoSync()
wx.getStorageInfo 的同步版本
以 Promise 風(fēng)格 調(diào)用:支持
小程序插件:不支持
微信 Windows 版:支持
微信 Mac 版:支持
返回值
Object object
屬性 類型 說明
keys Array.<string> 當(dāng)前 storage 中所有的 key
currentSize number 當(dāng)前占用的空間大小, 單位 KB
limitSize number 限制的空間大小,單位 KB
示例代碼
wx.getStorageInfo({
success (res) {
console.log(res.keys)
console.log(res.currentSize)
console.log(res.limitSize)
}
})
try {
const res = wx.getStorageInfoSync()
console.log(res.keys)
console.log(res.currentSize)
console.log(res.limitSize)
} catch (e) {
// Do something when catch error
}
作者:大學(xué)生新聞網(wǎng) 來源:大學(xué)生新聞網(wǎng)
發(fā)布時(shí)間:2025-04-09 閱讀: