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


TypeScript CurrencyPipe.transform方法代码示例

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


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

示例1: it

 it('should support any currency code name', () => {
   // currency code is unknown, default formatting options will be used
   expect(pipe.transform(5.1234, 'unexisting_ISO_code', 'symbol'))
       .toEqual('unexisting_ISO_code5.12');
   // currency code is USD, the pipe will format based on USD but will display "Custom name"
   expect(pipe.transform(5.1234, 'USD', 'Custom name')).toEqual('Custom name5.12');
 });
开发者ID:IdeaBlade,项目名称:angular,代码行数:7,代码来源:number_pipe_spec.ts

示例2: transform

    transform(value: number, ...args: any[]): any {
        let assetInfo = args.find(a => a instanceof Assets || a instanceof Object) as Assets;
        let currency = args.find(a => typeof a === "string") as string;
        let showCurrency = args.find(a => typeof a === "boolean");
        if (showCurrency === undefined) {
            showCurrency = true;
        }

        if (assetInfo && currency) {
            let asset = assetInfo[currency] ? assetInfo[currency] :
                (assetInfo['X' + currency] ? assetInfo['X' + currency] : null);
            //(assetInfo['Z' + currency] ? assetInfo['Z' + currency] : null));
            if (!asset && currency.startsWith('Z') && currency !== 'ZBT') {
                return this.currencyPipe.transform(value, currency.substring(1, currency.length), true);
            }
            else if (!asset) {
                return this.decimalPipe.transform(value, '1.5-5');
            }
            if (asset.assetClass === 'currency' && currency.startsWith('Z') && currency !== 'ZBT') {
                return this.currencyPipe.transform(value, currency.substring(1, currency.length), true);
            }
            let displayDecimals = asset.displayDecimals.toString();
            return this.decimalPipe.transform(value, '1.' + displayDecimals + '-' + displayDecimals);
        } else if (currency) {
            return this.currencyPipe.transform(value, currency.startsWith('Z') ? currency.substring(1, currency.length) : currency, true);
        }

        return this.decimalPipe.transform(value, '1.2-2');

    }
开发者ID:wallaceiam,项目名称:mKraken,代码行数:30,代码来源:cryptocurrency.pipe.ts

示例3: it

 it('should return correct value for numbers', () => {
   // In old Chrome, default formatiing for USD is different
   if (browserDetection.isOldChrome) {
     expect(normalize(pipe.transform(123))).toEqual('USD123');
   } else {
     expect(normalize(pipe.transform(123))).toEqual('USD123.00');
   }
   expect(normalize(pipe.transform(12, 'EUR', false, '.1'))).toEqual('EUR12.0');
   expect(normalize(pipe.transform(5.1234, 'USD', false, '.0-3'))).toEqual('USD5.123');
 });
开发者ID:JanStureNielsen,项目名称:angular,代码行数:10,代码来源:number_pipe_spec.ts

示例4: getLastVolumeTo

 getLastVolumeTo(): string {
   if (this.tickerData.TOSYMBOL == 'USD') {
     return this.currencyPipe.transform(this.tickerData.LASTVOLUMETO, this.tickerData.TOSYMBOL, true, '0.2-2');
     // return "tickerData.PRICE | currency:tickerData.TOSYMBOL:true"
   }
   else {
     let trade_pair_key: string = "USD_" + this.tickerData.TOSYMBOL;
     return this.currencyPipe.transform(this.tickerData.LASTVOLUMETO, this.tickerData.TOSYMBOL, true) + ' ( ' +
       this.currencyPipe.transform(this.tickerData.LASTVOLUMETO/this.cryptoCompareService.exchangeRates.get(trade_pair_key), 'USD', true, '0.2-2') + ' ) ';
   }
 }
开发者ID:funnyData,项目名称:crypto-arb-tracker,代码行数:11,代码来源:trading-pair-card.component.ts

示例5: currencyFmt

 public currencyFmt( val) {
   console.log( val);
   let v = val.replace( /[^\d]/g,'');
   v = (+v)/100;
   console.log( v);
   let x = this.currencyPipe.transform(v, 'USD', true, '1.2-2' ); // this.accountNumberFormat(value);
   console.log( x);
   return x;
 }
开发者ID:dmostroff,项目名称:ccpoints,代码行数:9,代码来源:utils.service.ts

示例6: constructor

    constructor(i18nService: I18nService, platformUtilsService: PlatformUtilsService,
        tokenService: TokenService, apiService: ApiService,
        private currencyPipe: CurrencyPipe) {
        super(i18nService, platformUtilsService, tokenService, apiService);

        // Support old price string. Can be removed in future once all translations are properly updated.
        const thePrice = this.currencyPipe.transform(this.price, '$');
        this.priceString = i18nService.t('premiumPrice', thePrice);
        if (this.priceString.indexOf('%price%') > -1) {
            this.priceString = this.priceString.replace('%price%', thePrice);
        }
    }
开发者ID:bitwarden,项目名称:browser,代码行数:12,代码来源:premium.component.ts

示例7: expect

 () => { expect(() => pipe.transform(new Object())).toThrowError(); });
开发者ID:AngularLovers,项目名称:angular,代码行数:1,代码来源:number_pipe_spec.ts

示例8: it

 it('should return correct value for numbers', () => {
   expect(pipe.transform(123)).toEqual('USD123.00');
   expect(pipe.transform(12, 'EUR', false, '.1')).toEqual('EUR12.0');
   expect(pipe.transform(5.1234, 'USD', false, '.0-3')).toEqual('USD5.123');
 });
开发者ID:AngularLovers,项目名称:angular,代码行数:5,代码来源:number_pipe_spec.ts


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