2

我正在尝试按照此答案DecimalPipe中的说明注入我的自定义管道。

这是代码:

@Pipe({name: 'irc'})
export class IRCurrencyPipe implements PipeTransform {

  constructor(private decimalPipe: DecimalPipe) {}

  transform(value: string | number, type: string = 'rial') {
    value = Number(value);
   if (isNaN(value)) { throw new Error(`${value} is not a acceptable number`); }
    return this.decimalPipe.transform(value, '1.0-0') + ' ریال';
  }
}

但是TypeError: Cannot read property 'transform' of undefined从这段代码运行测试时出现错误。

我还尝试按照此答案DecimalPipe中的建议扩展 :

@Pipe({name: 'irc'})
export class IRCurrencyPipe extends DecimalPipe implements PipeTransform {


  transform(value: string | number, type: string = 'rial') {
    value = Number(value);
    if (isNaN(value)) { throw new Error(`${value} is not a acceptable number`); }
    return super.transform(value, '1.0-0') + ' ریال';
  }
}

但我得到:Error: InvalidPipeArgument: 'Cannot read property 'toLowerCase' of undefined' for pipe 'DecimalPipe'在这种情况下。是否有一种可行的解决方案来使用与自定义管道成角度的内置管道之一?

4

3 回答 3

2

当您没有LOCALE_ID设置时会发生这种情况。你可以这样设置:

import { LOCALE_ID, NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { AppComponent } from '../src/app/app.component';

@NgModule({
  imports: [ BrowserModule ],
  declarations: [ AppComponent ],
  providers: [ { provide: LOCALE_ID, useValue: 'fr' } ],
  bootstrap: [ AppComponent ]
})
export class AppModule { }

在此处查看完整文档

于 2018-11-21T17:54:21.087 回答
1

我试过了,我得到了结果。查看代码

import { DecimalPipe } from '@angular/common';
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({name: 'currency'})
export class CurrencyPipe extends DecimalPipe implements PipeTransform {
    transform(value: string | number, type: string = 'rial') {
        value = Number(value);
        if (isNaN(value)) { throw new Error(`${value} is not a acceptable number`); }
        return super.transform(value, '1.0-0') + ' ریال';
    }
}

于 2018-10-18T17:42:37.947 回答
0

在您的单元测试中,您需要注册任何非默认语言环境(除了提供LOCALE_ID):

import localeFr from '@angular/common/locales/fr';

beforeEach(() => {
  registerLocaleData(localeFr);
});

https://angular.io/guide/i18n#i18n-pipes

于 2020-01-07T08:39:05.563 回答