-1

我正在尝试使用法语版本的 moment,但moment.locale('fr')它不起作用并且它不会改变语言:

console.debug(moment.locale()); 
moment.locale('fr'); 
console.debug(moment.locale());
console.debug(moment.locales());

输出

en
en
TypeError: moment.locales is not a function

gulpfile.js:

var path={
    js:
    [
        {
            src:
                [
                    'bower_components/moment/min/moment.min.js',
                    'bower_components/moment/locale/fr.js',
...
4

1 回答 1

1

您需要导入法语定义

import 'moment/locale/fr'
moment.locale('fr')

https://momentjs.com/docs/#/i18n/loading-into-browser/

于 2020-12-07T14:35:31.623 回答