我正在 ReactJS 上用葡萄牙语制作日历。
尽管很简单,但我无法将我的图书馆日期“moment.js”更改为葡萄牙语(巴西)。
已经尝试过的代码:
<strong>{moment(currentDate).locale('pt-br').format('LLLL')}</strong>
Run Code Online (Sandbox Code Playgroud)
但我不工作,它一直用英语带来日期。
1:
这是日期格式代码:
const [currentDate, setCurrentDate] = useState(new Date())
<Col>
<strong>{moment(currentDate).format('LLLL')}</strong>
</Col>
Run Code Online (Sandbox Code Playgroud)
如何用葡萄牙语(巴西)进行约会?