1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import {constant} from './constant'
- // 存储变量名
- let storageKey = 'storage_data'
- // 存储节点变量名
- let storageNodeKeys = [constant.avatar, constant.name, constant.roles, constant.permissions]
- const storage = {
- set: function(key:string, value:any):void {
- if (storageNodeKeys.indexOf(key) != -1) {
- let data = ref(uni.getStorageSync(key));
- let tmp:UTSJSONObject|null = data.value!=='' && data.value!==null? uni.getStorageSync(storageKey) as UTSJSONObject|null : null
- let tmpJson:UTSJSONObject = (tmp != null ? JSON.parseObject(JSON.stringify(tmp)) : {}) as UTSJSONObject
- tmpJson.set(key,value)
- uni.setStorageSync(storageKey, tmpJson)
- }
- },
- get: function(key:string):any|null {
- let data = ref(uni.getStorageSync(key));
- let storageData:UTSJSONObject|null = data.value!=='' && data.value!==null? uni.getStorageSync(storageKey) as UTSJSONObject|null : null
- if(storageData != null){
- let storeJson:UTSJSONObject=JSON.parseObject(JSON.stringify(storageData)) as UTSJSONObject
- return storeJson.get(key)
- }else{
- return null
- }
- },
- remove: function(key:string):void {
- let storageData:UTSJSONObject|null = uni.getStorageSync(storageKey) as UTSJSONObject|null
- if(storageData!=null){
- let storeMap=storageData.toMap()
- storeMap.delete(key)
- storageData=JSON.parseObject(JSON.stringify(storeMap)) as UTSJSONObject
- uni.setStorageSync(storageKey, storageData)
- }
-
- },
- clean: function():void {
- uni.removeStorageSync(storageKey)
- }
- }
- export default storage
|