Please enable JavaScript.
Coggle requires JavaScript to display documents.
ANGULARJS (MAIN COMPONENT (Directives (ng-app=""
for <…
ANGULARJS
MAIN COMPONENT
Directives
-
-
-
-
-
DATA BINDING
:pen: {{ name }}
Filter
-
-
Filter
-
just take item contain "string"
x in array | filter : 'string'
bind protptype to filter . add it to ng-model input to filter
Custome filter
app.filter("nametype", function(x){..//code..})
-
-
Module
var app = angular.module("myApp", []);
app.controller("namecontroller", function($scope) { ...// $scope.data });
** {{ data }}
-
-