swan.getStorageInfoSync
解释:同步获取当前 storage 的相关信息。
方法参数
无
示例
跳转编辑工具
扫码体验
代码示例
请使用百度APP扫码
图片示例
代码示例
- SWAN
- JS
<view class="container">
<view class="card-area">
<view class="list-area border-bottom">
<label class="list-item-key-4">key</label>
<input class="list-item-value" bindfocus="keyFocus" bindinput="keyInput" type="text" value="{{key}}" placeholder="请输入key" />
</view>
<view class="list-area border-bottom">
<label class="list-item-key-4">value</label>
<input class="list-item-value" bindfocus="valueFocus" bindinput="valueInput" type="text" value="{{value}}" placeholder="请输入value" />
</view>
<view>
<button bindtap="setStorage" type="primary" hover-stop-propagation="true">存储数据</button>
<button bindtap="getStorage" type="primary" hover-stop-propagation="true" disabled="{{disabled}}">读取数据</button>
<button bindtap="getStorageInfo" type="primary" disabled="{{disabled}}">获取存储数据信息</button>
</view>
</view>
</view>
Bug & Tip
- Tip:基础库 3.140.1 之前,无法判断接口是否调用失败。
- Tip:基础库 3.140.1 及以后,接口调用失败时会返回一个标准的
Error
对象,可通过instanceof
来判断接口是否调用失败。
错误码
Android
错误码 | 说明 |
---|---|
1001 | 执行失败 |