En este artículo, vamos a ver qué es getCurrencySymbol en Angular 10 y cómo usarlo. getCurrencySymbol se utiliza para r
getCurrencySymbol(code, locale, format)
Parámetros:
- código:
- lugar:
- formato:
NgModule: el módulo utilizado por getCurrencySymbol es:
- CommonModule
Acercarse:
- Cree la aplicación Angular que se utilizará.
- En app.module.ts importa LOCALE_ID porque necesitamos que se importe la configuración regional para usar getCurrencySymbol.
import { LOCALE_ID, NgModule } from '@angular/core';
- En app.component.ts importe getCurrencySymbol y LOCALE_ID
- inyecta LOCALE_ID como una variable pública.
- En app.component.html muestra la variable local usando la interpolación de strings
- Sirva la aplicación angular usando ng serve para ver el resultado.
Ejemplo 1:
app.component.ts
import { getCurrencySymbol } from '@angular/common'; import {Component} from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { curr = getCurrencySymbol("USD", "wide"); }
app.component.html
<h1> GeeksforGeeks </h1> <p>{{curr }} 100</p>
Producción:
Ejemplo 2:
app.component.ts
import { getCurrencySymbol } from '@angular/common'; import {Component} from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { curr = getCurrencySymbol("INR", "narrow"); }
app.component.html
<h1> GeeksforGeeks </h1> <p>{{curr }} 304</p>
Producción:
Referencia: https://angular.io/api/common/getCurrencySymbol