中国优质的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 dateFormat2 = new intl.DateTimeFormat('zh-CN', { dateStyle: 'short', timeStyle: 'short' }); this.time = dateFormat2.format(date); // formattedDate2: 2021/9/17 13:04 }) } .height("100%") .width('100%') .justifyContent(FlexAlign.Center) } }