How do I change the language of moment.js?

前端 未结 20 1507
别那么骄傲
别那么骄傲 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条回答
  •  天命终不由人
    2020-11-29 16:51

    for momentjs 2.12+, do the following:

    moment.updateLocale('de');
    

    Also note that you must use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale.

提交回复
热议问题