#鸿蒙学习大百科#如何自定义时间显示哪些信息?

如何自定义时间显示哪些信息?

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

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

  build() {
    Column() {
      Text(this.time).fontSize(20)
        .margin(10)
      Button("点击").onClick(() => {
        // 设置要格式化的日期
        let date = new Date(2021, 8, 17, 13, 4, 0);
        // 自定义年月日时分秒的显示效果 ,其中参数不写,则不显示
        let dateFormat3 = new intl.DateTimeFormat('zh-CN', {year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit'});
        this.time  = dateFormat3.format(date); // formattedDate3: 2021/09/17 13:04:00
      })
    }
    .height("100%")
    .width('100%')
    .justifyContent(FlexAlign.Center)
  }
}
分享
微博
QQ
微信
回复
2024-10-29 15:40:25
相关问题