#鸿蒙学习大百科#如何将数字显示为带中文单位的货币?

如何将数字显示为带中文单位的货币?

HarmonyOS
2024-10-29 09:54:39
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
后知后觉cy
// 导入模块
import { intl } from '@kit.LocalizationKit';

@Entry
@Component
struct Index {
  @State str: string = ''

  aboutToAppear(): void {
    // 用名称表示货币
    let numberFormat6 = new intl.NumberFormat('zh-CN', {style: 'currency', currency: 'USD', currencyDisplay: 'name'});
  this.str = numberFormat6.format(123400); // formattedNumber6: 123,400.00美元
  }

  build() {
    Column() {
      Text(this.str)
        .fontSize(30)
        .margin(20)
    }
    .height("100%")
    .width('100%')
    .justifyContent(FlexAlign.Center)
  }
}
分享
微博
QQ
微信
回复
2024-10-29 15:23:07
相关问题