中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何展示一段完整的时间?
微信扫码分享
// 导入模块 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 dateFormat1 = new intl.DateTimeFormat('zh-CN', { dateStyle: 'full', timeStyle: 'full' }); this.time = dateFormat1.format(date); // formattedDate1: 2021年9月17日星期五 中国标准时间 13:04:00 }) } .height("100%") .width('100%') .justifyContent(FlexAlign.Center) } }