Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

AngularJS reference manual


May 08, 2021 AngularJS


Table of contents


AngularJS Reference Manual

The AngularJS reference manual summarizes some of the AngularJS instructions used in this tutorial, as well as AngularJS filters.


AngularJS instructions

The AngularJS instructions used in this tutorial:

Instructions Describe Explain
ng_app Define the root element of the application. Instructions
ng_bind Bind HTML elements to application data. Brief introduction
ng_click Defines the behavior of an element when it is clicked. HTML events
ng_controller Define a controller object for the application. Controller
ng_disabled The disabled property that binds application data to HTML. HTML DOM
ng_init Define the initial value for the application. Instructions
ng_model Bind application data to HTML elements. Instructions
ng_repeat Define a template for each data in the controller. Instructions
ng_show Display or hide HTML elements. HTML DOM


AngularJS filter

The AngularJS filters used in this tutorial:

Filter Describe
currency Format the numbers in currency format.
filter Select a subset from the array item.
lowercase Format the string in small case.
orderBy Arrange arrays based on an expression.
uppercase Format the string to capitalize.

Specific knowledge of filters is covered in the chapter AngularJS Filters.