當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript js.default方法代碼示例

本文整理匯總了TypeScript中lazy.js.default方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript js.default方法的具體用法?TypeScript js.default怎麽用?TypeScript js.default使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在lazy.js的用法示例。


在下文中一共展示了js.default方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: Promise

			return new Promise((resolve) => {
				// map out files linked to changes
				// - queue holds files touched by a change
				// - pre-fill with actually changed files
				// - loop queue, if current not seen:
				//    - add to result
				//    - from refMap queue all files referring to current

				var result: FileDict = Object.create(null);
				var queue = Lazy<File>(this.changed).values().toArray();

				while (queue.length > 0) {
					var next = queue.shift();
					var fp = next.fullPath;
					if (result[fp]) {
						continue;
					}
					result[fp] = next;
					if (fp in this.refMap) {
						var arr = this.refMap[fp];
						for (var i = 0, ii = arr.length; i < ii; i++) {
							// just add it and skip expensive checks
							queue.push(arr[i]);
						}
					}
				}
				resolve(Lazy<File>(result).values().toArray());
			});
開發者ID:Airblader,項目名稱:DefinitelyTyped,代碼行數:28,代碼來源:index.ts

示例2:

			return Promise.attempt(() => {
				this.missing = Object.create(null);
				Lazy(this.removed).keys().each((removed) => {
					if (removed in this.refMap) {
						this.missing[removed] = this.refMap[removed];
					}
				});
			});
開發者ID:Airblader,項目名稱:DefinitelyTyped,代碼行數:8,代碼來源:index.ts

示例3: Lazy

			}).then((filesNames: string[]) => {
				this.files = Lazy(filesNames).filter((fileName) => {
					return this.runner.checkAcceptFile(fileName);
				}).map((fileName: string) => {
					var file = new File(this.runner.dtPath, fileName);
					this.fileMap[file.fullPath] = file;
					return file;
				}).toArray();
			});
開發者ID:Airblader,項目名稱:DefinitelyTyped,代碼行數:9,代碼來源:index.ts

示例4: save

  save() {
    let args = ['firstname',
      'birthDay',
      'nationalIdentificationNumber',
      'spareEmail',
      'city',
      'fax',
      'address',
      'companyNationalIdentificationNumber',
      'birthCity',
      'language',
      'name',
      'phone',
      'sex',
      'zip',
      'corporationType',
      'legalform'
    ];

    this.analytics.trackEvent('Account', 'save', 'Launch', 'Action is launched');
    this.loading = true;
    console.log(_(this.accountInfos).pick(args).value());
    this.accountService.save(_(this.accountInfos).pick(args).value());
  }
開發者ID:SCORE42,項目名稱:my-infra,代碼行數:24,代碼來源:account.ts


注:本文中的lazy.js.default方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。