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


TypeScript core.PipeTransform類代碼示例

本文整理匯總了TypeScript中@angular/core.PipeTransform的典型用法代碼示例。如果您正苦於以下問題:TypeScript PipeTransform類的具體用法?TypeScript PipeTransform怎麽用?TypeScript PipeTransform使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: value

 get value() {
   if (!this.row) return '';
   const prop: any = deepValueGetter(this.row, this.column.prop);
   const userPipe: PipeTransform = this.column.pipe;
   return userPipe ? userPipe.transform(prop) : prop;
 }
開發者ID:wor-k,項目名稱:angular2-data-table,代碼行數:6,代碼來源:BodyCell.ts

示例2: getCellData

  /**
   * @param value data to render integer
   */
  getCellData(value: any) {
    let parsedValue: string;
    if (typeof this.pipeArguments !== 'undefined' && value !== undefined) {

      parsedValue = this.componentPipe.transform(value, this.pipeArguments);
    }
    return parsedValue;
  }
開發者ID:gatsbimantico,項目名稱:ontimize-web-ngx,代碼行數:11,代碼來源:o-table-cell-renderer.ts

示例3: getCellData

  /**
   * @param value data to render integer
   */
  getCellData(cellvalue: any, rowvalue?: any) {
    let parsedValue: string;
    if (this.componentPipe && typeof this.pipeArguments !== 'undefined' && cellvalue !== undefined) {

      parsedValue = this.componentPipe.transform(cellvalue, this.pipeArguments);
    } else {
      parsedValue = cellvalue;
    }
    return parsedValue;
  }
開發者ID:gatsbimantico,項目名稱:ontimize-web-ngx,代碼行數:13,代碼來源:o-base-table-cell-renderer.class.ts

示例4: it

  it('should transform html to the SafeHtml', () => {
    const html = '<a href="#">foo</a>';
    const sanitized = '<a href="#">sanitized</a>';

    sanitizerSpy.bypassSecurityTrustHtml.and.returnValue(sanitized);

    const safeHtml: SafeHtml = safeHtmlPipe.transform(html);

    expect(safeHtml).toEqual(sanitized);

    expect(sanitizerSpy.bypassSecurityTrustHtml).toHaveBeenCalledTimes(1);
    expect(sanitizerSpy.bypassSecurityTrustHtml).toHaveBeenCalledWith(html);
  });
開發者ID:htdong,項目名稱:ng2-tree,代碼行數:13,代碼來源:safe-html.pipe.spec.ts

示例5:

	return () => (value: any, ...args: any[]): any => {
		return pipe.transform(value, ...args);
	};
開發者ID:JamieBowen,項目名稱:TypeScript-Angular-Utilities,代碼行數:3,代碼來源:utilitiesDowngrade.ts


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