📜  Angular 10 getCurrencySymbol() 方法

📅  最后修改于: 2022-05-13 01:56:32.350000             🧑  作者: Mango

Angular 10 getCurrencySymbol() 方法

在本文中,我们将了解 Angular 10 中的 getCurrencySymbol 是什么以及如何使用它。 getCurrencySymbol用于检索给定货币代码的货币符号

句法:

getCurrencySymbol(code, locale, format)

参数:

  • code:货币代码
  • locale:要使用的语言环境格式规则的语言环境代码。
  • 格式:格式。

返回值:

  • 字符串:格式化的日期字符串。

NgModule: getCurrencySymbol 使用的模块是:

  • 通用模块

方法:

  • 创建要使用的 Angular 应用程序。
  • 在 app.module.ts 中导入 LOCALE_ID,因为我们需要导入语言环境才能使用 getCurrencySymbol。
import { LOCALE_ID, NgModule } from '@angular/core';
  • 在 app.component.ts 中导入 getCurrencySymbol 和 LOCALE_ID
  • 注入 LOCALE_ID 作为公共变量。
  • 在 app.component.html 中使用字符串插值显示局部变量
  • 使用 ng serve 为 Angular 应用程序提供服务以查看输出。

示例 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

  GeeksforGeeks

  

{{curr }} 100



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

  GeeksforGeeks

  

{{curr }} 304



app.component.html

  GeeksforGeeks

  

{{curr }} 100

输出:

示例 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

  GeeksforGeeks

  

{{curr }} 304

输出:

参考: https ://angular.io/api/common/getCurrencySymbol