AngularJS For Everyone Tutorial #6 - Controller As Syntax

preview_player
Показать описание

Support Free Tutorials

The best shared web hosting

Subscribe to Level Up Pro for extra features!

Subscribe to the Level Up Newsletter

To Support Level Up Tuts:

Simple cloud hosting, built for developers.:

HTML is great for declaring static documents, but it falters when we try to use it for declaring dynamic views in web-applications. AngularJS lets you extend HTML vocabulary for your application. The resulting environment is extraordinarily expressive, readable, and quick to develop.
Рекомендации по теме
Комментарии
Автор

Best AngularJS Tutorials on whole YouTube I swear

adamkenton
Автор

nice video indeed, small note you can use cmd+d to add next occurrence of word to selection so you can select $scope and use cmd+d to select all occurrences and replace them with dirList quickly

Ihabkhattab
Автор

these videos are absolutely brilliant, keep up the good work.

theboher
Автор

I love AngularJS. Thanks for the videos.

vinothm
Автор

Thank you for your useful clearly explained videos. A small notice: instead of assigning a variable to this keyword. You could just use the this keyword itself instead of the variable before the properties keys like this.list = [...], and this.addPerson = f(){..};

islamsayed
Автор

Passionate, motivated and interest building tutorials :) (y)

i have a question about this video:
is controller as syntax uses for $scope only ?
what if i want to specify $rootScope ?

perfecttime
Автор

When your angular 2 tutorial will come ?

respotheme
Автор

Really nice videos. BIG thumbs up....

One question:What is the point of var dirList = this; ?
Seems to me, you could just set this up like a typical JS constructor function, like so:

.controller('directoryController, function() {
this.list = [
{ name: 'Scott'


];
this.addPerson = function() {
};
});

vikbhatia