Ошибка: ошибки синтаксического анализа шаблона: канал 'currencySeperator' не найден - PullRequest
0 голосов
/ 02 мая 2020

Я получаю сообщение об ошибке, когда пытаюсь использовать свой пользовательский канал в шаблоне:

Error: Template parse errors:
The pipe 'currencySeperator' could not be found

Вот CurrencySeperatorPipe

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

    @Pipe({
        name: 'currencySeperator'
    })
    export class  CurrencySeperatorPipe implements PipeTransform {
        transform(value: any, decimalSp: string = ',', thousandSp: string = '.'): number {
            return this.localeString(value,decimalSp,thousandSp);
        }

        missingOneDecimalCheck(nStr) {
            nStr += '';
            const x = nStr.split(',')[1];
            if (x && x.length === 1) return true;
            return false;
        }

        missingAllDecimalsCheck(nStr) {
            nStr += '';
            const x = nStr.split(',')[1];
            if (!x) return true;
            return false;
        }

        localeString(nStr,decimalSp,thousandSp) {
            if (nStr === '') return '';
            let x, x1, x2, rgx, y1, y2;
            nStr += '';
            x = nStr.split(thousandSp);
            x1 = x[0];
            x2 = x.length > 1 ? decimalSp + x[1] : '';
            rgx = /(\d+)(\d{3})/;
            while (rgx.test(x1)) {
                x1 = x1.replace(rgx, '$1' + thousandSp + '$2');
            }

            /** If value was inputed by user, it could have many decimals(up to 7)
                so we need to reformat previous x1 results */
            if (x1.indexOf(decimalSp) !== -1) {
                y1 = x1.slice(x1.lastIndexOf(decimalSp)).replace(/\./g, '');

                y2 = x1.split(decimalSp);
                x = y2[0] + y1;
            } else {
                x = x1 + x2;
                if (this.missingOneDecimalCheck(x)) return x += '0';
                if (this.missingAllDecimalsCheck(x)) return x += `${decimalSp}00`;
            }

            return x;
        }
    }

Итак, я создал канал .module.ts :

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { CurrencySeperatorPipe } from './currency-seperator.pipe';

    @NgModule({
      declarations: [CurrencySeperatorPipe],
      imports: [],
      exports:[CurrencySeperatorPipe]
    })
    export class PipeModule {
      static forRoot() {
        return {
          ngModule: PipeModule,
          providers: [],
        };
      }
    }

Я импортировал этот модуль в app.module.ts

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
...
    PipeModule.forRoot(),
  ],
  providers: [],
  bootstrap: [AppComponent],
  entryComponents: [
    ModalComponent,
    LoginComponent
  ],
})
export class AppModule { }

Когда я пытаюсь использовать {{цена | currencySeperator: ',': '.'}} как это в шаблоне, это дает мне эту ошибку.

Как я могу это исправить?

Спасибо

1 Ответ

0 голосов
/ 03 мая 2020

Вам не нужно импортировать PipeModule в AppModule, но в модуле, к которому принадлежит компонент, использующий канал.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...