storage.uvue 11.1 KB
Newer Older
1 2
<template>
  <!-- #ifdef APP -->
H
hdx 已提交
3 4
  <scroll-view class="page-scroll-view">
  <!-- #endif -->
5 6 7 8 9 10 11 12 13
    <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">
14
              <input class="uni-input" type="text" placeholder="请输入key" name="key" :value="key" maxlength="-1" @input="keyChange" />
15 16 17 18 19 20 21
            </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">
H
hdx 已提交
22
              <input class="uni-input" type="text" placeholder="请输入value" name="data"
23
                :value="typeof data === 'string' ? data : JSON.stringify(data)" maxlength="-1" @input="dataChange" />
24 25 26 27 28 29
            </view>
          </view>
        </view>
        <view class="uni-padding-wrap">
          <view class="uni-btn-v">
            <button class="uni-btn btn-getStorageInfoASync" type="primary" @tap="getStorageInfo">
30
              获取存储概述信息-异步
31 32
            </button>
            <button class="uni-btn btn-getStorageInfoSync" @tap="getStorageInfoSync">
33
              获取存储概述信息-同步
34 35 36 37
            </button>
          </view>
          <text>{{ storageInfo }}</text>
          <view class="uni-flex uni-row">
H
hdx 已提交
38
            <button type="default" style="width:50%" @tap="strMock">
39 40
              填充字符串
            </button>
H
hdx 已提交
41
            <button type="default" style="width:50%" @tap="complexMock">
42 43 44 45
              填充复杂对象
            </button>
          </view>
          <view class="uni-flex uni-row">
H
hdx 已提交
46
            <button type="default" style="width:50%" @tap="numberMock">
47 48
              填充整型
            </button>
H
hdx 已提交
49
            <button type="default" style="width:50%" @tap="floatMock">
50 51
              填充浮点型
            </button>
52 53
          </view>
          <view class="uni-flex uni-row">
54 55 56 57 58 59 60 61 62 63 64 65 66
            <button type="default" style="width:50%" @tap="jsonLikeMock">
              填充json字符串
            </button>
            <button type="default" style="width:50%" @tap="longLikeMock">
              填充整数字符串
            </button>
          </view>
          <view class="uni-flex uni-row">
            <button type="default" style="width:50%" @tap="floatLikeMock">
              填充浮点字符串
            </button>
            <button type="default" style="width:50%" @tap="negativeLikeMock">
              填充负数字符串
67
            </button>
68
          </view>
杜庆泉's avatar
杜庆泉 已提交
69 70 71 72 73
          <view class="uni-flex uni-row">
            <button type="default" class="uni-btn btn-complexStaticTest" style="width:100%" @tap="complexStaticTest">
              字面量读写测试
            </button>
          </view>
74 75 76
        </view>
        <view class="uni-padding-wrap">
          <view class="uni-btn-v">
H
hdx 已提交
77
            <button type="primary" class="uni-btn btn-setstorageAsync" @tap="setStorage">
78 79 80 81 82 83 84 85
              存储数据-异步
            </button>
            <button class="uni-btn btn-getstorageAsync" @tap="getStorage">读取数据-异步</button>
            <button class="uni-btn btn-removeStorageInfoASync" @tap="removeStorage">移除数据-异步</button>
            <button class="uni-btn btn-clearStorageInfoASync" @tap="clearStorage">清理数据-异步</button>
          </view>

          <view class="uni-btn-v">
H
hdx 已提交
86
            <button type="primary" class="uni-btn btn-setstorageSync" @tap="setStorageSync">
87 88 89 90 91 92 93 94 95 96 97 98 99
              存储数据-同步
            </button>
            <button class="uni-btn btn-getstorageSync" @tap="getStorageSync">读取数据-同步</button>
            <button class="uni-btn btn-removeStorageInfoSync" @tap="removeStorageSync">
              移除数据-同步
            </button>
            <button class="uni-btn btn-clearStorageInfoSync" @tap="clearStorageSync">
              清理数据-同步
            </button>
          </view>
        </view>
      </view>
    </view>
H
hdx 已提交
100
  <!-- #ifdef APP -->
101 102 103
  </scroll-view>
  <!-- #endif -->
</template>
H
hdx 已提交
104 105 106 107 108 109 110 111 112 113

<script>
  export default {
    data() {
      return {
        title: 'get/set/clearStorage',
        key: '',
        data: '' as any,
        apiGetData: '' as any | null,
        storageInfo: '',
杜庆泉's avatar
杜庆泉 已提交
114
        staticComplexRet:false
115 116
      }
    },
H
hdx 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
    methods: {
      getStorageInfo() {
        uni.getStorageInfo({
          success: (res) => {
            this.apiGetData = res
            this.storageInfo = JSON.stringify(res)
          },
        })
      },
      getStorageInfoSync() {
        try {
          const res = uni.getStorageInfoSync()
          this.apiGetData = res
          this.storageInfo = JSON.stringify(res)
        } catch (e) {
          // error
          console.log(e)
        }
      },
      jsonLikeMock() {
        this.key = 'key_' + Math.random()
        this.data = JSON.stringify({
139 140
          name: "james",
          age: 12,
H
hdx 已提交
141 142
          from: "american"
        });
143 144 145 146 147 148 149 150 151 152 153 154 155

      },
      longLikeMock() {
        this.key = 'key_' + Math.random()
        this.data = "1234567890"
      },
      floatLikeMock() {
        this.key = 'key_' + Math.random()
        this.data = "321456.1234567890"
      },
      negativeLikeMock() {
        this.key = 'key_' + Math.random()
        this.data = "-321456"
H
hdx 已提交
156 157 158 159 160
      },
      strMock() {
        this.key = 'key_' + Math.random()
        this.data = '测试字符串数据,长度为16个字符'
      },
杜庆泉's avatar
杜庆泉 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
      complexStaticTest() {
        uni.setStorageSync("key_complexStaticMock", {
          name:"张三",
          age:12
        })
        let savedData = uni.getStorageSync("key_complexStaticMock")
        this.staticComplexRet = false
        if(savedData instanceof UTSJSONObject){
          if((savedData as UTSJSONObject).getNumber('age') == 12){
            this.staticComplexRet = true
            uni.showToast({
              icon:'success',
              title:'测试通过'
            })
          }
        }
      },
H
hdx 已提交
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
      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
      },
204

H
hdx 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
      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,
          })
        } else {
          let that = this
          uni.getStorage({
            key: key,
            success: (res) => {
杜庆泉's avatar
杜庆泉 已提交
224

H
hdx 已提交
225 226 227 228 229 230 231
              that.apiGetData = res.data
              let desc : string = typeof this.apiGetData
              if ("object" == desc) {
                desc = desc + ": " + JSON.stringify(this.apiGetData)
              } else {
                desc = desc + ": " + this.apiGetData
              }
232

H
hdx 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245 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
              uni.showModal({
                title: '读取数据成功',
                content: desc,
                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 {
          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
          }

          uni.showModal({
            title: '读取数据成功',
            content: desc,
            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: () => {
323
            uni.showModal({
H
hdx 已提交
324
              title: '移除数据成功',
325 326 327 328 329
              showCancel: false,
            })
          },
          fail: () => {
            uni.showModal({
H
hdx 已提交
330
              title: '移除数据失败',
331 332 333 334
              showCancel: false,
            })
          },
        })
H
hdx 已提交
335 336 337
      },
      removeStorageSync: function () {
        uni.removeStorageSync(this.key)
338
        uni.showModal({
H
hdx 已提交
339
          title: '移除数据成功',
340 341
          showCancel: false,
        })
H
hdx 已提交
342 343 344 345 346 347
      },
      clearStorage: function () {
        this.key = ''
        this.data = ''
        uni.clearStorage({
          success: function (_) {
348
            uni.showModal({
H
hdx 已提交
349
              title: '清除数据成功',
350 351 352
              showCancel: false,
            })
          },
H
hdx 已提交
353
          fail: function (_) {
354
            uni.showModal({
H
hdx 已提交
355
              title: '清除数据失败',
356 357 358 359
              showCancel: false,
            })
          },
        })
H
hdx 已提交
360 361 362 363 364
      },
      clearStorageSync: function () {
        this.key = ''
        this.data = ''
        uni.clearStorageSync()
365
        uni.showModal({
H
hdx 已提交
366 367
          title: '清除数据成功',
          content: ' ',
368 369
          showCancel: false,
        })
H
hdx 已提交
370
      },
371
    },
H
hdx 已提交
372
  }
373 374 375 376
</script>

<style>
</style>