#鸿蒙学习大百科#如何将小数转化为百分比?

如何将小数转化为百分比?

HarmonyOS
2024-10-29 09:51:54
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
莫名瞄一眼
// 导入模块
import { intl } from '@kit.LocalizationKit';

@Entry
@Component
struct Index {
  @State str: string = ''
  aboutToAppear(): void {
    // 显示百分数
    let numberFormat4 = new intl.NumberFormat('zh-CN', {style: 'percent'});
    this.str = numberFormat4.format(0.25); // formattedNumber4: 25%
  }
  build() {
    Column() {
      Text(this.str)
        .fontSize(30)
        .margin(20)
    }
    .height("100%")
    .width('100%')
    .justifyContent(FlexAlign.Center)
  }
}
分享
微博
QQ
微信
回复
2024-10-29 16:10:04
相关问题
如何将一张图片转化为PixelMapElement
9872浏览 • 1回复 待解决