首頁 > web前端 > js教程 > 舉例簡介AngularJS的內部語言環境_AngularJS

舉例簡介AngularJS的內部語言環境_AngularJS

WBOY
發布: 2016-05-16 15:54:26
原創
1289 人瀏覽過

 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>

登入後複製

結果

在網頁瀏覽器開啟textAngularJS.html。看到結果如下。

2015617114029826.jpg (560×240)

 使用瀏覽器的語言環境範例
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>

登入後複製

結果

在網頁瀏覽器開啟textAngularJS.html。看到結果如下。

2015617114048791.jpg (560×240)

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板