swan.getStorageInfoSync

解释:同步获取当前 storage 的相关信息。

方法参数

示例

跳转编辑工具

在开发者工具中打开

在 WEB IDE 中打开

扫码体验

代码示例

百度智能小程序

请使用百度APP扫码

图片示例

swan.getStorageInfoSync - 图2

代码示例

  • SWAN
  • JS
  1. <view class="container">
  2. <view class="card-area">
  3. <view class="list-area border-bottom">
  4. <label class="list-item-key-4">key</label>
  5. <input class="list-item-value" bindfocus="keyFocus" bindinput="keyInput" type="text" value="{{key}}" placeholder="请输入key" />
  6. </view>
  7. <view class="list-area border-bottom">
  8. <label class="list-item-key-4">value</label>
  9. <input class="list-item-value" bindfocus="valueFocus" bindinput="valueInput" type="text" value="{{value}}" placeholder="请输入value" />
  10. </view>
  11. <view>
  12. <button bindtap="setStorage" type="primary" hover-stop-propagation="true">存储数据</button>
  13. <button bindtap="getStorage" type="primary" hover-stop-propagation="true" disabled="{{disabled}}">读取数据</button>
  14. <button bindtap="getStorageInfo" type="primary" disabled="{{disabled}}">获取存储数据信息</button>
  15. </view>
  16. </view>
  17. </view>

Bug & Tip

  • Tip:基础库 3.140.1 之前,无法判断接口是否调用失败。
  • Tip:基础库 3.140.1 及以后,接口调用失败时会返回一个标准的Error对象,可通过instanceof来判断接口是否调用失败。

错误码

Android

错误码说明

1001

执行失败