# ks.getStorageSync

# any ks.getStorageSync(string key)

ks.getStorage 的同步版本

# 参数

# string key

本地缓存中指定的 key

# 返回值

# any data

key对应的内容

# 示例代码

ks.getStorage({
  key: 'key',
  success (res) {
    console.log(res.data)
  }
})
try {
  var value = ks.getStorageSync('key')
  if (value) {
    // Do something with return value
  }
} catch (e) {
  // Do something when catch error
}