4

これは私のコードです

$scope.getWeekDayShort = function(date) {
                moment().locale('pt-br');
                return moment(date, "D_M_YYYY").format('ddd');
            }

英語で曜日名を返しますが、ポルトガル語の曜日名が必要です

1_1_2015を渡すと、 Thuが返されます

ポルトガル語で曜日名を取得するにはどうすればよいですか?

編集

moment.locale('pt-br');
console.log(JSON.stringify(moment.months())) // ["janeiro","fevereiro","março","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro"]
moment.locale('en');
console.log(JSON.stringify(moment.months())); // ["January","February","March","April","May","June","July","August","September","October","November","December"]

サポートされているすべての言語データを含むmoment-with-locales.min.jsファイルを含めました。これは上位コードでうまく機能します。では、なぜ週名で機能しないのですか?

4

1 に答える 1