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


TypeScript QueryList.map方法代码示例

本文整理汇总了TypeScript中angular2/core.QueryList.map方法的典型用法代码示例。如果您正苦于以下问题:TypeScript QueryList.map方法的具体用法?TypeScript QueryList.map怎么用?TypeScript QueryList.map使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在angular2/core.QueryList的用法示例。


在下文中一共展示了QueryList.map方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: calculate

 /**
  * Handles a calculation request, actual calculation is delegated to calculator service.
  */
 private calculate() {
     this.result = this.calculatorService.performOperation(this.inputComponents.map(cmp => cmp.getValue()), this.selectedOperation);
 }
开发者ID:codecoster,项目名称:2016-angular-netbeans,代码行数:6,代码来源:calculator-component.ts

示例2: collapseAll

	collapseAll() {
		this.cards.map((card: Card) => card.close());
	}
开发者ID:SamGraber,项目名称:conf-template-components,代码行数:3,代码来源:card-list.ts

示例3: composeNgValidator

export function composeNgValidator(ngValidators: QueryList<NgValidator>): Function {
  if (isBlank(ngValidators)) return Validators.nullValidator;
  return Validators.compose(ngValidators.map(v => v.validator));
}
开发者ID:KenWilliamson,项目名称:Angular2HostedMobileApp,代码行数:4,代码来源:shared.ts


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