本文整理匯總了TypeScript中ionic-angular.Storage.getJson方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Storage.getJson方法的具體用法?TypeScript Storage.getJson怎麽用?TypeScript Storage.getJson使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ionic-angular.Storage
的用法示例。
在下文中一共展示了Storage.getJson方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: getValue
getValue(key: string): Promise<any> {
return this.storage.getJson(key)
.then((value) => {
return value;
})
.catch((error) => { return error; });
}
示例2: load
async load(defaultValue?: T): Promise<T> {
let json: T;
try {
json = await this.storage.getJson(this.key);
} catch (ex) {
logger.warn(() => `Failed to get Local Storage ${this.key}: ${ex}`);
}
if (!json && defaultValue) {
json = defaultValue;
this.save(json);
}
logger.debug(() => `Loaded Local Storage ${this.key}: ${JSON.stringify(json)}`);
return json;
}
示例3: Storage
let store:any = {}; // 存儲內存中的數據
const local = new Storage(LocalStorage);
export const AKStorage = {
// 以下是Keys
THIRD_PARTY: 'AK_' + 'THIRD_PARTY',
CURRENT_USER: 'AK_' + 'CURRENT_USER',
NOTIFICATION_DATA: 'AK_' + 'NOTIFICATION_DATA',
HOME_DATA: 'AK_' + 'HOME_DATA',
// 以下是接口
// 獲取所有第三方登錄記錄
getThirdParties() {
if (store.thirdParties) return Promise.resolve(store.thirdParties);
return local.getJson(AKStorage.THIRD_PARTY).then(value => store.thirdParties = value);
},
// 插入或修改第三方登錄記錄
upsertThirdParty(data) {
const {name} = data;
if (data) {
AKStorage.getThirdParties().then(value => {
let newValue;
if (!value || value.length <= 0 || value.find((tp) => tp.name === name)) {
newValue = [data];
} else {
const position = value.findIndex((tp) => tp.name === name);
newValue = Object.assign([], value);
newValue.splice(position, 1, data);
示例4: getJson
getJson(key: string): Promise<any> {
return this.storage.getJson(key);
}