本文整理汇总了TypeScript中services/localstorage.LocalStorage.get方法的典型用法代码示例。如果您正苦于以下问题:TypeScript LocalStorage.get方法的具体用法?TypeScript LocalStorage.get怎么用?TypeScript LocalStorage.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类services/localstorage.LocalStorage
的用法示例。
在下文中一共展示了LocalStorage.get方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: getBeginDate
getBeginDate(){
if (this.localstorage.get('begin-date')) {
this.beginDate = this.localstorage.get('begin-date');
}
return this.beginDate;
}
示例2: getNbPack
getNbPack(){
if (this.localstorage.get('nb-packs')) {
this.nbPacks = parseInt(this.localstorage.get('nb-packs'));
} else {
this.nbPacks = 0;
}
return this.nbPacks;
}
示例3: getPricePack
getPricePack(){
if (this.localstorage.get('price')) {
this.pricePack = this.localstorage.get('price');
} else {
this.pricePack = 0;
}
return this.pricePack;
}
示例4: getCigarettePrice
getCigarettePrice(){
if (this.localstorage.get('price')) {
this.cigarettePrice = parseFloat(this.localstorage.get('price') / 20);
} else {
this.cigarettePrice = 0.35;
}
return this.cigarettePrice;
}
示例5: getDayGoal
getDayGoal(){
if (this.localstorage.get('day-goal')) {
this.dayGoal = parseInt(this.localstorage.get('day-goal'));
} else {
this.dayGoal = 0;
}
return this.dayGoal;
}
示例6: getWeekGoal
getWeekGoal(){
if (this.localstorage.get('week-goal')) {
this.weekGoal = parseInt(this.localstorage.get('week-goal'));
} else {
this.weekGoal = 0;
}
return this.weekGoal;
}
示例7: getDayCount
getDayCount(){
if (this.localstorage.get('day-count')) {
let dayJsonReceived = JSON.parse(this.localstorage.get('day-count'));
if (dayJsonReceived.day != moment().format("DD/MM/YYYY")) {
dayJsonReceived.day = moment().format("DD/MM/YYYY");
dayJsonReceived.nb = 0;
this.localstorage.saveJson('day-count', JSON.stringify(dayJsonReceived));
}
this.todayCount = dayJsonReceived.nb;
} else {
this.todayCount = 0;
let dayJsonSend = { 'day': moment().format("DD/MM/YYYY"), 'nb': this.todayCount };
this.localstorage.saveJson('day-count', JSON.stringify(dayJsonSend));
}
return this.todayCount;
}
示例8: getWeekCount
getWeekCount(){
if (this.localstorage.get('week-count')) {
let weekJsonReceived = JSON.parse(this.localstorage.get('week-count'));
if (weekJsonReceived.week != moment().week()) {
weekJsonReceived.week = moment().week();
weekJsonReceived.nb = 0;
this.localstorage.saveJson('week-count', JSON.stringify(weekJsonReceived));
}
this.weekCount = weekJsonReceived.nb;
} else {
this.weekCount = 0;
let weekJsonSend = { 'week': moment().week(), 'nb': this.weekCount };
this.localstorage.saveJson('week-count', JSON.stringify(weekJsonSend));
}
return this.weekCount;
}
示例9: addACigarette
addACigarette(){
this.totalCigarettes++;
this.weekCount++;
this.todayCount++;
this.budgetCigarettes = parseFloat(Math.round((this.cigarettePrice * this.totalCigarettes)*100)/100);
this.cigarettesLeft = (this.nbPacks * 20) - this.totalCigarettes;
this.localstorage.saveNumber('total-cigarettes', this.totalCigarettes);
let weekCount = JSON.parse( this.localstorage.get('week-count'));
weekCount.nb = this.weekCount;
this.localstorage.saveJson('week-count', JSON.stringify(weekCount));
let dayCount = JSON.parse(this.localstorage.get('day-count'));
dayCount.nb = this.todayCount;
this.localstorage.saveJson('day-count', JSON.stringify(dayCount));
if (!this.beginDate) {
this.beginDate = moment().format('DD/MM/YYYY');
this.localstorage.saveDate('begin-date', this.beginDate);
return this.beginDate;
}
}
示例10: getTotalCigarette
getTotalCigarette(){
this.totalCigarettes = localStorage.getItem('total-cigarettes');
this.budgetCigarettes = Math.round((this.cigarettePrice * this.totalCigarettes)*100)/100;
this.cigarettesLeft = (this.nbPacks * 20) - this.totalCigarettes;
let cigarettes = {
total:0,
budget:0,
left:0
};
if (this.localstorage.get('total-cigarettes')) {
this.totalCigarettes = localStorage.getItem('total-cigarettes');
this.budgetCigarettes = Math.round((this.cigarettePrice * this.totalCigarettes)*100)/100;
this.cigarettesLeft = (this.nbPacks * 20) - this.totalCigarettes;
cigarettes.total = this.totalCigarettes;
cigarettes.budget = this.budgetCigarettes;
cigarettes.left = this.cigarettesLeft;
}
return cigarettes;
}