本文整理匯總了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)
];
}