storage.uvue 9.6 KB
Newer Older
Y
init  
yurj26 已提交
1
<template>
DCloud-WZF's avatar
DCloud-WZF 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
  <!-- #ifdef APP -->
  <scroll-view style="flex: 1">
    <!-- #endif -->
    <view>
      <page-head :title="title"></page-head>
      <view class="uni-common-mt">
        <view class="uni-list">
          <view class="uni-list-cell uni-list-cell-line">
            <view class="uni-list-cell-left">
              <view class="uni-label">key</view>
            </view>
            <view class="uni-list-cell-db">
              <input
                class="uni-input"
                type="text"
                placeholder="请输入key"
                name="key"
                :value="key"
                @input="keyChange"
              />
            </view>
          </view>
          <view class="uni-list-cell">
            <view class="uni-list-cell-left">
              <view class="uni-label">value</view>
            </view>
            <view class="uni-list-cell-db">
              <input
                class="uni-input"
                type="text"
                placeholder="请输入value"
                name="data"
                :value="data"
                @input="dataChange"
              />
            </view>
          </view>
        </view>
        <view class="uni-padding-wrap">
          <view class="uni-btn-v">
42
            <button class="uni-btn btn-getStorageInfoASync" type="primary" @tap="getStorageInfo">
DCloud-WZF's avatar
DCloud-WZF 已提交
43 44
              获取存储概述-异步
            </button>
45 46 47
            <button class="uni-btn btn-getStorageInfoSync" @tap="getStorageInfoSync">
              获取存储概述-同步
            </button>
DCloud-WZF's avatar
DCloud-WZF 已提交
48 49 50 51
          </view>
          <text>{{ storageInfo }}</text>
          <view class="uni-flex uni-row">
            <button
杜庆泉's avatar
杜庆泉 已提交
52 53
              type="default"
              style="width:325rpx"
DCloud-WZF's avatar
DCloud-WZF 已提交
54 55 56 57 58
              @tap="strMock"
            >
              填充字符串
            </button>
            <button
杜庆泉's avatar
杜庆泉 已提交
59 60
              type="default"
              style="width:325rpx"
DCloud-WZF's avatar
DCloud-WZF 已提交
61 62 63 64 65 66 67
              @tap="complexMock"
            >
              填充复杂对象
            </button>
          </view>
          <view class="uni-flex uni-row">
            <button
杜庆泉's avatar
杜庆泉 已提交
68 69
              type="default"
              style="width:325rpx"
DCloud-WZF's avatar
DCloud-WZF 已提交
70 71 72 73 74
              @tap="numberMock"
            >
              填充整型
            </button>
            <button
杜庆泉's avatar
杜庆泉 已提交
75 76
              type="default"
              style="width:325rpx"
DCloud-WZF's avatar
DCloud-WZF 已提交
77 78 79 80 81 82 83 84 85 86
              @tap="floatMock"
            >
              填充浮点型
            </button>
          </view>
        </view>
        <view class="uni-padding-wrap">
          <view class="uni-btn-v">
            <button
              type="primary"
87
              class="uni-btn btn-setstorageAsync"
DCloud-WZF's avatar
DCloud-WZF 已提交
88 89 90 91
              @tap="setStorage"
            >
              存储数据-异步
            </button>
92
            <button class="uni-btn btn-getstorageAsync" @tap="getStorage">读取数据-异步</button>
93 94
            <button class="uni-btn btn-removeStorageInfoASync" @tap="removeStorage">移除数据-异步</button>
            <button class="uni-btn btn-clearStorageInfoASync" @tap="clearStorage">清理数据-异步</button>
DCloud-WZF's avatar
DCloud-WZF 已提交
95
          </view>
杜庆泉's avatar
杜庆泉 已提交
96

DCloud-WZF's avatar
DCloud-WZF 已提交
97 98 99
          <view class="uni-btn-v">
            <button
              type="primary"
杜庆泉's avatar
杜庆泉 已提交
100
              class="uni-btn btn-setstorageSync"
DCloud-WZF's avatar
DCloud-WZF 已提交
101 102 103 104
              @tap="setStorageSync"
            >
              存储数据-同步
            </button>
杜庆泉's avatar
杜庆泉 已提交
105
            <button class="uni-btn btn-getstorageSync" @tap="getStorageSync">读取数据-同步</button>
106
            <button class="uni-btn btn-removeStorageInfoSync" @tap="removeStorageSync">
DCloud-WZF's avatar
DCloud-WZF 已提交
107 108
              移除数据-同步
            </button>
109
            <button class="uni-btn btn-clearStorageInfoSync" @tap="clearStorageSync">
DCloud-WZF's avatar
DCloud-WZF 已提交
110 111 112 113 114 115 116 117 118
              清理数据-同步
            </button>
          </view>
        </view>
      </view>
    </view>
    <!-- #ifdef APP -->
  </scroll-view>
  <!-- #endif -->
Y
init  
yurj26 已提交
119
</template>
Y
yurj26 已提交
120
<script lang="uts">
DCloud-WZF's avatar
DCloud-WZF 已提交
121 122 123 124 125
export default {
  data() {
    return {
      title: 'get/set/clearStorage',
      key: '',
126 127
      data: '' as any,
      apiGetData:'' as any|null,
DCloud-WZF's avatar
DCloud-WZF 已提交
128 129 130 131 132 133
      storageInfo: '',
    }
  },
  methods: {
    getStorageInfo() {
      uni.getStorageInfo({
134 135
        success: function (res) {
          this.apiGetData = res
DCloud-WZF's avatar
DCloud-WZF 已提交
136 137 138 139 140 141
          this.storageInfo = JSON.stringify(res)
        },
      })
    },
    getStorageInfoSync() {
      try {
142 143 144
        const res = uni.getStorageInfoSync()
        this.apiGetData = res
        this.storageInfo = JSON.stringify(res)
DCloud-WZF's avatar
DCloud-WZF 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
      } catch (e) {
        // error
        console.log(e)
      }
    },
    strMock() {
      this.key = 'key_' + Math.random()
      this.data = '测试字符串数据,长度为16个字符'
    },
    complexMock() {
      this.key = 'key_' + Math.random()
      let jsonObj = {
        name: '张三',
        age: 12,
        classMate: [
          {
            id: 1001,
            name: '李四',
          },
          {
            id: 1002,
            name: 'jack ma',
          },
        ],
      }
      this.data = jsonObj
    },
    numberMock() {
      this.key = 'key_' + Math.random()
      this.data = 10011
    },
    floatMock() {
      this.key = 'key_' + Math.random()
      this.data = 3.1415926535893384626
    },
杜庆泉's avatar
杜庆泉 已提交
180

DCloud-WZF's avatar
DCloud-WZF 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193 194
    keyChange: function (e: InputEvent) {
      this.key = e.detail.value
    },
    dataChange: function (e: InputEvent) {
      this.data = e.detail.value
    },
    getStorage: function () {
      var key = this.key
      if (key.length == 0) {
        uni.showModal({
          title: '读取数据失败',
          content: 'key 不能为空',
          showCancel: false,
        })
195 196
      } else {
        let that = this
DCloud-WZF's avatar
DCloud-WZF 已提交
197 198
        uni.getStorage({
          key: key,
199
          success: (res) => {
杜庆泉's avatar
杜庆泉 已提交
200 201 202 203 204 205 206 207 208
            that.apiGetData = res.data

            let desc:string = typeof this.apiGetData
            if("object" == desc){
              desc = desc  + ": " + JSON.stringify(this.apiGetData)
            }else{
              desc = desc  + ": " + this.apiGetData
            }

DCloud-WZF's avatar
DCloud-WZF 已提交
209 210
            uni.showModal({
              title: '读取数据成功',
杜庆泉's avatar
杜庆泉 已提交
211
              content: desc,
DCloud-WZF's avatar
DCloud-WZF 已提交
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
              showCancel: false,
            })
          },
          fail: () => {
            uni.showModal({
              title: '读取数据失败',
              content: '找不到 key 对应的数据',
              showCancel: false,
            })
          },
        })
      }
    },
    getStorageSync: function () {
      var key = this.key
      if (key.length == 0) {
        uni.showModal({
          title: '读取数据失败',
          content: 'key 不能为空',
          showCancel: false,
        })
      } else {
杜庆泉's avatar
杜庆泉 已提交
234 235 236 237 238 239 240 241 242
        this.apiGetData = uni.getStorageSync(key)

        let desc:string = typeof this.apiGetData
        if("object" == desc){
          desc = desc  + ": " + JSON.stringify(this.apiGetData)
        }else{
          desc = desc  + ": " + this.apiGetData
        }

DCloud-WZF's avatar
DCloud-WZF 已提交
243 244
        uni.showModal({
          title: '读取数据成功',
杜庆泉's avatar
杜庆泉 已提交
245
          content:  desc,
DCloud-WZF's avatar
DCloud-WZF 已提交
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
          showCancel: false,
        })
      }
    },
    setStorage: function () {
      var key = this.key
      var data = this.data
      if (key.length == 0) {
        uni.showModal({
          title: '保存数据失败',
          content: 'key 不能为空',
          showCancel: false,
        })
      } else {
        uni.setStorage({
          key: key,
          data: data,
          success: () => {
            uni.showModal({
              title: '存储数据成功',
              showCancel: false,
            })
          },
          fail: () => {
            uni.showModal({
              title: '储存数据失败!',
              showCancel: false,
            })
          },
        })
      }
    },
    setStorageSync: function () {
      var key = this.key
      var data = this.data
      if (key.length == 0) {
        uni.showModal({
          title: '保存数据失败',
          content: 'key 不能为空',
          showCancel: false,
        })
      } else {
        uni.setStorageSync(key, data)
        uni.showModal({
          title: '存储数据成功',
          showCancel: false,
        })
      }
    },
    removeStorage: function () {
      uni.removeStorage({
        key: this.key,
        success: () => {
          uni.showModal({
            title: '移除数据成功',
            showCancel: false,
          })
        },
        fail: () => {
          uni.showModal({
            title: '移除数据失败',
            showCancel: false,
          })
        },
      })
    },
    removeStorageSync: function () {
      uni.removeStorageSync(this.key)
      uni.showModal({
        title: '移除数据成功',
        showCancel: false,
      })
    },
    clearStorage: function () {
      this.key = ''
      this.data = ''
      uni.clearStorage({
        success: function (_) {
          uni.showModal({
            title: '清除数据成功',
            showCancel: false,
          })
        },
        fail: function (_) {
          uni.showModal({
            title: '清除数据失败',
            showCancel: false,
          })
        },
      })
    },
    clearStorageSync: function () {
      this.key = ''
      this.data = ''
      uni.clearStorageSync()
      uni.showModal({
        title: '清除数据成功',
        content: ' ',
        showCancel: false,
      })
    },
  },
}
Y
init  
yurj26 已提交
349 350 351
</script>

<style>
DCloud-WZF's avatar
DCloud-WZF 已提交
352 353 354 355
.btn-setstorage {
  background-color: #007aff;
  color: #ffffff;
}
杜庆泉's avatar
杜庆泉 已提交
356

DCloud-WZF's avatar
DCloud-WZF 已提交
357 358 359 360 361
.button-sp-area {
  flex-direction: row;
  margin: 0 auto;
}
</style>