小程序同步獲取所有本地存儲 Object wx.getStorageInfoSync()
	   wx.getStorageInfo 的同步版本
以 Promise 風格 調用:支持
小程序插件:不支持
微信 Windows 版:支持
微信 Mac 版:支持
返回值
Object object
屬性    類型    說明
keys    Array.<string>    當前 storage 中所有的 key
currentSize    number    當前占用的空間大小, 單位 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
}
	   
 作者:大學生新聞網(wǎng)    來源:大學生新聞網(wǎng)