百度智能小程序 同步移除指定key

2020-09-05 14:15 更新

swan.removeStorageSync

解釋:從本地緩存中同步移除指定 key。

方法參數(shù)

String keykey參數(shù)說明 :本地緩存中的指定的 key。

示例 

在開發(fā)者工具中打開


圖片示例

 


代碼示例

<view class="wrap">
    <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">存儲數(shù)據(jù)</button>
            <button bindtap="getStorage" type="primary" hover-stop-propagation="true" disabled="{{disabled}}">讀取數(shù)據(jù)</button>
            <button bindtap="getStorageInfo" type="primary" disabled="{{disabled}}">獲取存儲數(shù)據(jù)信息</button>
            <button bindtap="removeStorageSync" type="primary" hover-stop-propagation="true" disabled="{{disabled}}">移除第一個key對應(yīng)的value值</button> 
        </view>
    </view>
</view>
Page({
    data: {
        key: '示例Key',
        value: '示例Value',
        disabled: true
    },
    keyInput(e) {
        this.setData('key', e.detail.value);
    },
    valueInput(e) {
        this.setData('value', e.detail.value);
    },
    valueFocus() {
        this.setData('value', '');
    },
    keyFocus() {
        this.setData('key', '');
    },
    setStorage() {
        let key = this.hasKey();
        if (!key) {
            return;
        }
        swan.setStorage({
            key,
            data: this.getData('value'),
            success: res => {
                this.toast('存儲成功', 'none');
                this.setData('disabled', false);
            },
            fail: err => {
                this.toast('存儲數(shù)據(jù)失敗');
            }
        });
    },
    getStorage() {
        let key = this.hasKey();
        if (!key) {
            return;
        }
        swan.getStorage({
            key,
            success: res => {
                const data = res.data;
                if (data) {
                    swan.showModal({
                        title: '數(shù)據(jù)信息',
                        content: `${key}: ${data}`,
                        showCancel: false
                    });
                } else {
                    this.toast('找不到key對應(yīng)的值');
                }
            },
            fail: err => {
                this.toast('讀取數(shù)據(jù)失敗');
            }
        });
    },
    getStorageInfo() {
        swan.getStorageInfo({
            success: res => {
                swan.showModal({
                    title: '',
                    content: JSON.stringify(res) 
                })
                this.setData({keysList: res.keys});
                console.log('getStorageInfo success', res);
            },
            fail: err => {
                console.log('getStorageInfo fail', err);
            }
        });
    },
    removeStorageSync() {
        swan.getStorageInfo({
            success: res => {
                let result = swan.removeStorageSync(res.keys[0]);
                // 基礎(chǔ)庫 3.140.1 之前,無法判斷接口是否調(diào)用失敗
                // 基礎(chǔ)庫 3.140.1 及以后,通過 instanceof 來判斷是否未傳必傳值`key`或接口是否調(diào)用失敗
                if (!(result instanceof Error)) {
                    this.toast('removeStorageSync success', 'none');
                }
                else {
                    this.toast('removeStorageSync fail', 'none');
                }
                console.log('getStorageInfo success', res);
            },
            fail: err => {
                console.log('getStorageInfo fail', err);
            }
        });
    },
    hasKey() {
        let key = this.getData('key');
        if (key) {
            return key;
        }
        this.toast('key不能為空');
    },
    toast(title, icon = 'none') {
        swan.showToast({title, icon});
    }
});

Bug & Tip

  • 基礎(chǔ)庫 3.140.1 之前,無法判斷接口是否調(diào)用失敗。
  • 基礎(chǔ)庫 3.140.1 及以后,接口調(diào)用失敗時會返回一個標(biāo)準(zhǔn)的Error對象,可通過instanceof來判斷接口是否調(diào)用失敗。

錯誤碼

Android

錯誤碼 說明

201

解析失敗,請檢查調(diào)起協(xié)議是否合法

1001

執(zhí)行失敗

iOS

錯誤碼 說明

202

解析失敗,請檢查參數(shù)是否正確


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號