swan.getStorageInfo

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

方法参数

Object object

object参数说明

属性名类型必填默认值说明
successFunction接口调用成功的回调函数,详见返回参数说明。
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明 :

参数类型说明
keysArray.<string>当前 storage 中所有的 key。
currentSizeNumber当前占用的空间大小, 单位 KB。
limitSizeNumber限制的空间大小,单位 KB。

示例

在开发者工具中预览效果

swan.getStorageInfo - 图1请使用百度APP扫码

图片示例

swan.getStorageInfo - 图2

swan.getStorageInfo - 图3

swan.getStorageInfo - 图4

代码示例

  • 在 swan 文件中
  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>
  • 在 js 文件中
  1. Page({
  2. data: {
  3. key: '示例Key',
  4. value: '示例Value',
  5. disabled: true
  6. },
  7. keyInput(e) {
  8. this.setData('key', e.detail.value);
  9. },
  10. valueInput(e) {
  11. this.setData('value', e.detail.value);
  12. },
  13. valueFocus() {
  14. this.setData('value', '');
  15. },
  16. keyFocus() {
  17. this.setData('key', '');
  18. },
  19. setStorage() {
  20. let key = this.hasKey();
  21. if (!key) {
  22. return;
  23. }
  24. swan.setStorage({
  25. key,
  26. data: this.getData('value'),
  27. success: res => {
  28. this.toast('存储成功', 'none');
  29. this.setData('disabled', false);
  30. },
  31. fail: err => {
  32. this.toast('存储数据失败');
  33. }
  34. });
  35. },
  36. getStorage() {
  37. let key = this.hasKey();
  38. if (!key) {
  39. return;
  40. }
  41. swan.getStorage({
  42. key,
  43. success: res => {
  44. const data = res.data;
  45. if (data) {
  46. swan.showModal({
  47. title: '数据信息',
  48. content: `${key}: ${data}`,
  49. showCancel: false
  50. });
  51. } else {
  52. this.toast('找不到key对应的值');
  53. }
  54. },
  55. fail: err => {
  56. this.toast('读取数据失败');
  57. }
  58. });
  59. },
  60. getStorageInfo() {
  61. swan.getStorageInfo({
  62. success: res => {
  63. swan.showModal({
  64. title: '',
  65. content: JSON.stringify(res)
  66. })
  67. console.log('getStorageInfo success', res);
  68. },
  69. fail: err => {
  70. console.log('getStorageInfo fail', err);
  71. }
  72. });
  73. },
  74. hasKey() {
  75. let key = this.getData('key');
  76. if (key) {
  77. return key;
  78. }
  79. this.toast('key不能为空');
  80. },
  81. toast(title, icon = 'none') {
  82. swan.showToast({title, icon});
  83. }
  84. });

错误码

Android

错误码说明
1001执行失败