对以下代码片段作用的最准确描述是( )wx.getStorageInfo({ success (res) { console.log(res.keys) console.log(res.currentSize) console.log(res.limitSize) }})
A: 异步获取当前storage的相关信息
B: 同步获取当前storage的相关信息。
C: 异步获取当前storage中指定key的文件信息。
D: 同步获取当前storage中指定key的文件信息。
A: 异步获取当前storage的相关信息
B: 同步获取当前storage的相关信息。
C: 异步获取当前storage中指定key的文件信息。
D: 同步获取当前storage中指定key的文件信息。
举一反三
- 对以下代码片段作用的最准确描述是( )try { const res = wx.getStorageInfoSync() console.log(res.keys) console.log(res.currentSize) console.log(res.limitSize)} catch (e) { // Do something when catch error} A: 异步获取当前storage的相关信息。 B: 同步获取当前storage的相关信息。 C: 异步获取当前storage中指定key的文件信息。 D: 同步获取当前storage中指定key的文件信息。
- 中国大学MOOC: 对以下代码片段作用的最准确描述是( )wx.getStorageInfo({success (res) {console.log(res.keys)console.log(res.currentSize)console.log(res.limitSize)}})
- 对以下代码片段作用的最准确描述是( )wx.getStorage({ key: 'key', success (res) { console.log(res.data) }}) A: 从本地缓存中异步获取指定 key 的内容data B: 从本地缓存中同步获取指定 key 的内容data C: 从本地缓存中异步获取指定 key 的内容res D: 从本地缓存中同步获取指定 key 的内容res
- 异步获取当前的storage的相关信息,使用【】。
- 同步获取当前的storage的相关信息,使用【】。