本文整理汇总了TypeScript中services/localstorage.LocalStorage类的典型用法代码示例。如果您正苦于以下问题:TypeScript LocalStorage类的具体用法?TypeScript LocalStorage怎么用?TypeScript LocalStorage使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了LocalStorage类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: addASuggestion
addASuggestion(value){
switch (true) {
case (value >= 10 && value < 20):
this.messageSuggestion = "Vous avez manqué l'occasion d'aller au cinéma...";
break;
case (value >= 20 && value < 30):
this.messageSuggestion = "Dommage ! Vous auriez pu inviter votre copine au MacDo.";
break;
case (value >= 30 && value < 70):
this.messageSuggestion = "Vous auriez pu aller au restaurant...";
break;
case (value >= 70 && value < 150):
this.messageSuggestion = "Vous n'allez pas agrandir votre cave à vin de si tôt...";
break;
case (value >= 150 && value < 300):
this.messageSuggestion = "Vous auriez pu compléter votre garde-robe...";
break;
case (value >= 300):
this.messageSuggestion = "Vous auriez pu vous faire un petit week-end en amoureux...";
break;
}
this.localstorage.saveString('message-suggestion', this.messageSuggestion);
return this.messageSuggestion;
}
示例8: 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;
}
示例9: 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;
}
示例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;
}
示例11: 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;
}
}
示例12: addAPack
addAPack(pack:Number) {
this.nbPacks = pack;
this.localstorage.saveNumber('nb-packs', pack);
}
示例13: setNbPacks
setNbPacks(nbPacks){
this.localstorage.saveNumber('nb-packs', nbPacks);
}
示例14: setPricePack
setPricePack(price){
this.localstorage.saveNumber('price', price);
}
示例15: setDayGoal
setDayGoal(dayGoal){
this.localstorage.saveNumber('day-goal', dayGoal);
}