本文整理汇总了TypeScript中local-storage.default函数的典型用法代码示例。如果您正苦于以下问题:TypeScript default函数的具体用法?TypeScript default怎么用?TypeScript default使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了default函数的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
(token) => {
ls('favorites', _favorites);
ls('email', email);
ls('userToken', token.userToken);
this.email = email;
this.userToken = token.userToken;
cb(null);
},
示例2: ls
constructor(
public category_id: number,
public title: string,
public image: string
) {
this.progress = 0;
this.progress = ls(`c_${category_id}`) ? ls(`c_${category_id}`) : 0;
this.answered = new Set<number>();
this.questions = new Array<Question>();
}
示例3: ListHeader
constructor(private router: Router, private rest: RestService) {
this.header = new ListHeader(
'Cruise Concierge /Travelers',
'Who\'s Traveling?',
'You may select more than one'
);
this.list = new Array();
this.count = ls('count_t') ? ls('count_t') : 0;
}
示例4:
it('toggle_like(question_id: number)', () => {
survey.like(category, question);
expect(ls('_liked').length).toBe(1);
expect(ls('_liked')[0]).toBe(123);
expect(survey.liked.size).toBe(1);
expect(survey.liked.has(123)).toBeTruthy();
survey.toggle_like(question.question_id);
expect(ls('_liked').length).toBe(0);
expect(survey.liked.size).toBe(0);
});
示例5:
buildTravelItem.on("click", () => {
regions.toggle(value);
buildTravelItem.find('.icon-check').css('visibility', regions.has(value) ? 'visible' : 'hidden');
if (regions.has(value)) {
rt.count++;
ls('count_r', rt.count);
} else {
rt.count--;
ls('count_r', rt.count);
}
});
示例6:
item.on("click", () => {
survey.toggle_like(travel.question_id);
item.find('.icon-check').css('visibility', survey.answer(travel.question_id) === SURVEY.liked ? 'visible' : 'hidden');
if (survey.answer(travel.question_id) === SURVEY.liked) {
wt.count++;
ls('count_t', wt.count);
} else {
wt.count--;
ls('count_t', wt.count);
}
});
示例7: ls
constructor() {
if (ls('_liked')) {
this._liked = new Set<number>(ls('_liked'));
this._disliked = new Set<number>(ls('_disliked'));
this._neutral = new Set<number>(ls('_neutral'));
this._cached = ls('_cached');
} else {
this._liked = new Set<number>();
this._disliked = new Set<number>();
this._neutral = new Set<number>();
this._cached = true;
}
}
示例8:
store() {
let regions = [];
this.regions.forEach((_) => {
regions.push(_);
});
ls('regions', regions);
}
示例9: ListHeader
constructor(private router: Router, private rest: RestService) {
this.header = new ListHeader(
'Cruise Conceirge /Regions',
'What regions are you interested in?',
'You may select more than one.'
);
this.regions = rest.regions;
this.count = ls('count_r') ? ls('count_r') : 0;
this.list = [
buildTravelListItem('Carribean', this.regions, REGIONS.Carribean, this),
buildTravelListItem('Central America', this.regions, REGIONS.CentralAmerica, this),
buildTravelListItem('New England', this.regions, REGIONS.NewEngland, this),
buildTravelListItem('Pacific Northwest', this.regions, REGIONS.PacificNorthwest, this),
buildTravelListItem('Alaska', this.regions, REGIONS.Alaska, this)
];
}