获取实际加载的语言环境脚本的日期格式

时间:2014-12-02 11:36:01

标签: angularjs internationalization

我动态导入语言环境脚本到我的应用程序:

$scope.setCountry = function(countryKey) {
        // Dynamically load i18n Angular locale depending on country select
        var imported = document.createElement('script');
        var fileImport = 'angular-locale_' + countryKey + '.js';
        console.log(fileImport);
        imported.src = 'i18n/angular-locale/' + fileImport;
        document.head.appendChild(imported);
};

如何获取实际加载的日期格式?例如shortDate?

我需要这样:dd / MM / y(例如英国) 谢谢!

1 个答案:

答案 0 :(得分:3)

使用$ locale服务,然后使用$locale.DATETIME_FORMATS.medium

读取日期格式