angularjs过滤器’date’和$locale服务

前端之家收集整理的这篇文章主要介绍了angularjs过滤器’date’和$locale服务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
看来,angularjs嵌入了一些国际化的资源:

Angular supports i18n/l10n for date,number and currency filters.
Additionally,Angular supports localizable pluralization support
through the ngPluralize directive. All localizable Angular components
depend on locale-specific rule sets managed by the $locale service.

如果发现$locale service,但不要kwnow如何在fr-fr中指定区域设置

以下代码

{{article.date_collected | date:'EEEE dd MMMM yyyy'}}

给予:

Monday 06 October 2014

但我想要 :

Lundi 06 Octobre 2014

有什么建议么?

最后,我发现在角度github页面上的响应:
https://github.com/angular/bower-angular-i18n#bower-angular-i18n

编辑:更多的信息,为我工作

在您的根应用程序目录中,从bower安装资源

bower install angular-i18n

添加< script>如果您使用bower / buildjs将所有脚本压缩到vendor.js文件,请在此评论标签之间的index.html:

<!-- endbower -->
<script src="bower_components/angular-i18n/angular-locale_fr-fr.js"></script>
<!-- endbuild -->

而已.

原文链接:https://www.f2er.com/angularjs/142786.html

猜你在找的Angularjs相关文章