Closed pedropapa closed 4 years ago
Estou com o mesmo problema:
` import { BrMaskDirective, BrMaskModel } from 'br-mask';
[...]
constructor( public brMask: BrMaskDirective ) { } `
Estou tentando executar o Feature (https://github.com/amarkes/br-mask#features)
Same here, when I try to use this feature -> https://github.com/amarkes/br-mask#features ...
core.js:15724 ERROR Error: Uncaught (in promise): Error: StaticInjectorError(AppModule)[IonIcon -> ElementRef]: StaticInjectorError(Platform: core)[IonIcon -> ElementRef]: NullInjectorError: No provider for ElementRef! Error: StaticInjectorError(AppModule)[IonIcon -> ElementRef]: StaticInjectorError(Platform: core)[IonIcon -> ElementRef]: NullInjectorError: No provider for ElementRef!
I'm using the following libraries as workaround:
const intl = new Intl.NumberFormat('pt-BR', { style: 'currency', currency: 'BRL' });
console.log(intl.format(10.3))
import * as StringMask from 'string-mask';
...
console.log(StringMask.apply(cpf, '000.000.000-00'));
console.log(StringMask.apply(cnpj, '00.000.000/0000-00'));
Same issue as @MarcosRibeiroJesus has. Adding BrMaskDirective to the providers section cause another error
Yeah, having the very same issue here when adding BrMaskDirective to providers. Since this issue is opened since May, probably it's time to consider another library for this matter.
Mesmo problema com o ionic 4 tentando usar o BrMaskDirective, alguem conseguiu funcionar ?
Uncaught (in promise): NullInjectorError: StaticInjectorError(AppModule)[IonText -> ElementRef]:
Mesmo problema com o ionic 4 tentando usar o BrMaskDirective, alguem conseguiu funcionar ?
Uncaught (in promise): NullInjectorError: StaticInjectorError(AppModule)[IonText -> ElementRef]:
Depois de muito quebrar cabeça e estar com prazo em cima, eu desisti do br-mask acabei trocando pelo ngx-mask-ionic, que funcionou pra mim. Acabou dando menos problema. =/
Enfrentando o mesmo problema. Tive que usar o libphonenumber-js seguindo este tutorial para lidar com telefones que possuem ou não o 9 na frente.
I solved this problem by adding BrMaskDirective in providers of component like this.
`import { BrMaskDirective, BrMaskModel } from 'br-mask';
@Component({ selector: 'app-root', templateUrl: 'app.component.html', styleUrls: ['./app.component.scss'] providers: [BrMaskDirective] })`
I solved this problem by adding BrMaskDirective in providers of component like this.
`import { BrMaskDirective, BrMaskModel } from 'br-mask';
@component({ selector: 'app-root', templateUrl: 'app.component.html', styleUrls: ['./app.component.scss'] providers: [BrMaskDirective] })`
This worked for me, thank you.
Ao tentar utilizar a diretiva como dependência de alguma página, o seguinte erro é apresentado:
Código da página:
Isso só acontece quando utilizado como dependência, se utilizar como diretiva em algum
.html
, funciona normalmente.