當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。