W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
解釋:將數(shù)據(jù)存儲(chǔ)在本地緩存中指定的 key 中。如果之前存在同名 key,會(huì)覆蓋掉原來該 key 對(duì)應(yīng)的內(nèi)容。這是一個(gè)同步接口。
String key, Object/String datakey參數(shù)說明 :本地緩存中的指定的 keydata參數(shù)說明 :需要存儲(chǔ)的內(nèi)容
<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="請(qǐng)輸入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="請(qǐng)輸入value" />
</view>
<view>
<button bindtap="setStorageSync" type="primary" hover-stop-propagation="true">存儲(chǔ)數(shù)據(jù)</button>
<button bindtap="getStorageSync" type="primary" hover-stop-propagation="true" disabled="{{disabled}}">讀取數(shù)據(jù)</button>
</view>
</view>
</view>
Page({
data: {
key: '示例Key',
value: '示例Value',
disabled: true
},
keyInput(e) {
this.setData('key', e.detail.value);
},
valueFocus() {
this.setData('value', '');
},
keyFocus() {
this.setData('key', '');
},
valueInput(e) {
this.setData('value', e.detail.value);
},
setStorageSync() {
let key = this.hasKey();
if (!key) {
return;
}
let res = swan.setStorageSync(key, this.getData('value'));
// 基礎(chǔ)庫(kù) 3.140.1 之前,無法判斷接口是否調(diào)用失敗
// 基礎(chǔ)庫(kù) 3.140.1 及以后,通過 instanceof 來判斷接口是否調(diào)用失敗
if (!(res instanceof Error)) {
this.toast('存儲(chǔ)成功', 'none');
this.setData('disabled', false);
}
else {
swan.showModal({
title: '存儲(chǔ)失敗',
content: res.message
});
}
},
getStorageSync() {
let key = this.hasKey();
if (!key) {
return;
}
let res = swan.getStorageSync(key);
// 基礎(chǔ)庫(kù) 3.140.1 之前,無法判斷接口是否調(diào)用失敗
// 基礎(chǔ)庫(kù) 3.140.1 及以后,通過 instanceof 來判斷接口是否調(diào)用失敗
if (!(res instanceof Error)) {
if (res) {
console.log('getStorageSync success:', res);
swan.showModal({
title: '數(shù)據(jù)信息',
content: `${key}: ${res}`,
showCancel: false
});
}
else {
this.toast('找不到key對(duì)應(yīng)的值');
}
}
else {
this.toast('讀取數(shù)據(jù)失敗');
}
},
hasKey() {
let key = this.getData('key');
if (key) {
return key;
}
this.toast('key不能為空');
},
toast(title, icon = 'none') {
swan.showToast({title, icon});
}
});
error
對(duì)象,可通過instanceof
來判斷接口是否調(diào)用失敗。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: