【问题标题】:Moment.js - I can't change the date to "pt-br" (ReactJS)Moment.js - 我无法将日期更改为“pt-br”(ReactJS)
【发布时间】:2021-09-30 00:24:09
【问题描述】:

我正在 ReactJS 上用葡萄牙语制作日历。

尽管很简单,但我无法将我的图书馆日期“moment.js”更改为葡萄牙语(巴西)。

已经尝试过的代码:

<strong>{moment(currentDate).locale('pt-br').format('LLLL')}</strong>

但我不工作,它一直用英文显示日期。

1:

这是日期格式代码:

const [currentDate, setCurrentDate] = useState(new Date())

<Col>
 <strong>{moment(currentDate).format('LLLL')}</strong>
</Col>

如何让日期停留在葡萄牙语(巴西)?

【问题讨论】:

标签: reactjs date momentjs


【解决方案1】:

我刚决定导入位置:

import 'moment/locale/pt-br'

并添加代码:

moment.locale('pt-br')

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2023-03-17
    • 2013-10-24
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-12-05
    • 2016-07-21
    • 1970-01-01
    相关资源
    最近更新 更多