欢迎来到代码驿站!

AngularJS

当前位置:首页 > 网页前端 > AngularJS

AngularJS国际化详解及示例代码

时间:2021-02-02 10:11:13|栏目:AngularJS|点击:

AngularJS支持内置的国际化三种类型的过滤器货币,日期和数字。只需要根据国家的区域纳入相应的JS。默认情况下它处理浏览器的语言环境。例如,要使用丹麦语的语言环境,使用下面的脚本

<script src="https://code.angularjs.org/1.2.5/i18n/angular-locale_da-dk.js"></script> 

使用丹麦语的语言环境实例

testAngularJS.html

<html>
<head>
  <title>Angular JS Forms</title>
</head>
<body>
  <h2>AngularJS Sample Application</h2>
  <div ng-app="mainApp" ng-controller="StudentController">
   {{fees | currency }} <br/><br/>
   {{admissiondate | date }}  <br/><br/>
   {{rollno | number }} 
  </div>
  <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>
  <script src="https://code.angularjs.org/1.2.5/i18n/angular-locale_da-dk.js"></script> 
  <script>
   var mainApp = angular.module("mainApp", []);
	  
   mainApp.controller('StudentController', function($scope) {
      $scope.fees = 100;
			$scope.admissiondate = new Date();
      $scope.rollno = 123.45;
   });
   
  </script>
</body>
</html>

结果

在Web浏览器打开textAngularJS.html。看到结果如下。

AngularJS Internalization 使用浏览器的语言环境示例

testAngularJS.html

<html>
<head>
  <title>Angular JS Forms</title>
</head>
<body>
  <h2>AngularJS Sample Application</h2>
  <div ng-app="mainApp" ng-controller="StudentController">
   {{fees | currency }} <br/><br/>
   {{admissiondate | date }}  <br/><br/>
   {{rollno | number }} 
  </div>
  <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>
  <!-- <script src="https://code.angularjs.org/1.2.5/i18n/angular-locale_da-dk.js"></script> -->
  <script>
   var mainApp = angular.module("mainApp", []);
	  
   mainApp.controller('StudentController', function($scope) {
      $scope.fees = 100;
			$scope.admissiondate = new Date();
      $scope.rollno = 123.45;
   });
   
  </script>
</body>
</html>

结果

在Web浏览器打开textAngularJS.html。看到结果如下。

以上就是对AngularJS 国际化的资料整理,后续继续整理相关资料,谢谢大家对本站的支持!

上一篇:angular4模块中给标签添加背景图的实现方法

栏    目:AngularJS

下一篇:Angular4.0中引入laydate.js日期插件的方法教程

本文标题:AngularJS国际化详解及示例代码

本文地址:http://www.codeinn.net/misctech/55680.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有