当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript local-storage.default函数代码示例

本文整理汇总了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);
			},
开发者ID:saikonda,项目名称:cruise-pas-public,代码行数:8,代码来源:favorites.ts

示例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>();
	}
开发者ID:saikonda,项目名称:cruise-pas-public,代码行数:10,代码来源:categories.ts

示例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;
	}
开发者ID:saikonda,项目名称:cruise-pas-public,代码行数:10,代码来源:whos-traveling.component.ts

示例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);
		});
开发者ID:saikonda,项目名称:cruise-pas-public,代码行数:11,代码来源:rest.service.spec.ts

示例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);
		}
	});
开发者ID:saikonda,项目名称:cruise-pas-public,代码行数:11,代码来源:region-traveling.component.ts

示例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);
		}
	});
开发者ID:saikonda,项目名称:cruise-pas-public,代码行数:11,代码来源:whos-traveling.component.ts

示例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;
		}
	}
开发者ID:saikonda,项目名称:cruise-pas-public,代码行数:13,代码来源:survey.ts

示例8:

	store() {
		let regions = [];
		this.regions.forEach((_) => {
			regions.push(_);
		});
		ls('regions', regions);
	}
开发者ID:saikonda,项目名称:cruise-pas-public,代码行数:7,代码来源:regions.ts

示例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)
		];
	}
开发者ID:saikonda,项目名称:cruise-pas-public,代码行数:16,代码来源:region-traveling.component.ts


注:本文中的local-storage.default函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。