言う日付があるとします
<script>
module.controller("mycontroller", function($scope) {
$scope.theDate = new Date();
});
</script>
そしてHTMLで私は書いた
<div ng-controller="mycontroller">
{{theDate | date : "fullDate"}}
</div>
したがって、これは簡単な英語で日付を返します。
私が必要としているのは、fr、ja などの国ベースの言語で日付を取得することです。Angular Momentを使用して「今からの時間」を取得していますが、カスタム言語で日付を取得できません。