#鸿蒙学习大百科#如何将数字带上货币单位?

如何将数字带上货币单位?

HarmonyOS
2024-10-29 09:54:02
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
鹈鹕说蟹蟹你
// 导入模块
import { intl } from '@kit.LocalizationKit';

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

  aboutToAppear(): void {
    // 格式化货币
    let numberFormat5 = new intl.NumberFormat('zh-CN', { style: 'currency', currency: 'USD' });
    this.str = numberFormat5.format(123400); // formattedNumber5: US$123,400.00
  }

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