• 2022-06-08
    对以下代码片段作用的最准确描述是( )wx.getStorage({ key: 'key', success (res) { console.log(res.data) }})
    A: 从本地缓存中异步获取指定 key 的内容data
    B: 从本地缓存中同步获取指定 key 的内容data
    C: 从本地缓存中异步获取指定 key 的内容res
    D: 从本地缓存中同步获取指定 key 的内容res
  • 举一反三