• 2022-06-08
    对以下代码片段作用的最准确描述是( )try { wx.removeStorageSync('key')} catch (e) { // Do something when catch error}
    A: 从本地缓存中异步移除指定 key
    B: 从本地缓存中同步移除指定 key
    C: 异步清空本地数据缓存
    D: 同步清空本地数据缓存
  • 举一反三