我正在尝试更改由moment.js设置的日期语言.默认一个是英语,但我想用德语.这些是我试过的:
var now = moment().format("LLL").lang("de");
Run Code Online (Sandbox Code Playgroud)
给予NAN,没有用.
var now = moment("de").format("LLL");
Run Code Online (Sandbox Code Playgroud)
甚至没有反应,也没有起作用.
var now = moment().format("LLL", "de");
Run Code Online (Sandbox Code Playgroud)
没有变化,仍然英语,没有工作.
这怎么可能?
我正在 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)
如何用葡萄牙语(巴西)进行约会?