gpt4 book ai didi

reactjs - 根据 api url 中的数据格式化react.js 中的日期

转载 作者:行者123 更新时间:2023-12-02 01:56:21 25 4
gpt4 key购买 nike

我正在尝试在 React/typescript 项目中格式化我的日期,但是数据来自 api,因此我可以映射数据并显示它,但如何将其转换为“2021 年 6 月 22 日”等格式?

来自 api 的数据格式为:

{
"title": 'First',
"time": "2020-07-22T13:22:10.2566789+00:00",
}

然后我将模板绑定(bind)为 {data.time}

有什么想法吗?

最佳答案

是的,这是实现这一目标的简单方法

const date = new Date("2020-07-22T13:22:10.2566789+00:00")
const formattedDate = date.toLocaleDateString("en-GB", {
day: "numeric",
month: "long",
year: "numeric"
})

console.log(formattedDate)

关于reactjs - 根据 api url 中的数据格式化react.js 中的日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69574886/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com