uniappローカルデータストレージ
3817 ワード
同期記憶上の本質とウィジェットのwx.setStorageSyncはwxのみです.uniに変更します.ストレージ:
取得:
削除:
//
uni.setStorage({
key: ' ',
data: ' ',
});
//
uni.setStorageSync(' ', ' ');
//
取得:
//
uni.getStorage({
key: ' ',
success: function (res) {
console.log(res.data);//set
}
});
//
uni.getStorageSync(' ');
削除:
// key
uni.removeStorageSync('storage_key');
//
uni.removeStorage({
key: ' ',
success: function (res) {
console.log('success');
}
});