HarmonyOS 时间日期格式化

时间日期怎么自定义格式化,比如 yyyy/MM/dd HH:mm:ss 。

HarmonyOS
2024-09-13 08:54:02
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
put_get

可以使用三方库dayjs,下载安装:ohpm install dayjs

使用: import dayjs from “dayjs”;

当前时间:dayjs().format(“YYYY-MM-DD HH:mm:ss”)

某个date: dayjs(date).format(“YYYY-MM-DD HH:mm:ss”)

可参考以下文档:https://gitee.com/openharmony-tpc/openharmony_tpc_samples/tree/master/dayjs

示例demo:

import dayjs from "dayjs"; 
@Entry 
@Component 
struct Index { 
  @State timeStr: number = 1714991876; 
  @State timeNow: string = '' 
  build() { 
    Row() { 
      Column() { 
        Text(`当前时间:` + this.timeNow).fontSize(20).fontWeight(FontWeight.Bold).width("100%") 
        Button("get time").onClick(() => { 
          try { 
            this.timeNow = dayjs.unix(this.timeStr).format('YYYY-MM-DD HH:mm:ss') 
          } catch (e) { 
          } 
        }) 
      }.justifyContent(FlexAlign.Center).width('100%') 
    }.height('100%') 
  } 
}
分享
微博
QQ
微信
回复
2024-09-13 18:14:38
相关问题
HarmonyOS如何实现日期格式化转换
438浏览 • 1回复 待解决
HarmonyOS 如何将时间进行格式化
39浏览 • 1回复 待解决
HarmonyOS DateFormat格式化
271浏览 • 1回复 待解决
格式化console输出日志格式-美观
193浏览 • 1回复 待解决
HarmonyOS 字符串格式化异常
179浏览 • 1回复 待解决
Dev EcoStudio如何格式化代码
3547浏览 • 1回复 已解决
如何将时间戳转换为日期格式时间
2727浏览 • 1回复 待解决
保存自动格式化代码如何配置
273浏览 • 1回复 待解决
如何关闭编辑器自动格式化
634浏览 • 1回复 待解决
如何对电话号码进行格式化
243浏览 • 1回复 待解决
在DevStudio中如何对代码进行格式化
373浏览 • 1回复 待解决
如何格式化字符串,有人知道吗?
235浏览 • 1回复 待解决
HarmonyOS 日期/日历/时间选择器开发
222浏览 • 1回复 待解决