How do I change the language of moment.js?

前端 未结 20 1500
别那么骄傲
别那么骄傲 2020-11-29 16:27

I am trying to change the language of the date which is being set by moment.js. The default one is English, but I want to set the German language. These is what I tried:

20条回答
  •  萌比男神i
    2020-11-29 17:14

    You'd need to add moment.lang(navigator.language) in your script.

    And must also add each country locale you want to display in : for example for GB or FR, you need to add that locale format in moment.js library. An example of such format is available in momentjs documentation. If you don't add this format in moment.js then it'd ALWAYS pick up US locale as that's the only one that I currently see.

提交回复
热议问题