An example of AngularJS's internal language environment

Source: Internet
Author: User
Tags i18n

An example of AngularJS's internal language environment

This article mainly introduces AngularJS's internal language environment, which shows the impact of different language Environments on currency, date, and other text. For more information, see

AngularJS supports three built-in types of filter currencies, dates, and numbers for internationalization. You only need to include the corresponding JS according to the region of the country. By default, it processes the language environment of the browser. For example, to use the Danish language environment, use the following script

?

1

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

Example of a language environment using Danish

TestAngularJS.html

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

<Html>

<Head>

<Title> Angular JS Forms </title>

</Head>

<Body>

<H2> AngularJS Sample Application

<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>

Result

Open textangularjs.html in the webbrowser. The result is as follows.

Example of a language environment using a browser

TestAngularJS.html

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

<Html>

<Head>

<Title> Angular JS Forms </title>

</Head>

<Body>

<H2> AngularJS Sample Application

<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>

Result

Open textangularjs.html in the webbrowser. The result is as follows.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.