Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular directive name: only lower case letters allowed?

My code:

app.directive('abcabc', function (){ alert('directive');}); // working

but

app.directive('abcAbc', function (){ alert('directive');}); // not working !
app.directive('abc-abc', function (){ alert('directive');}); // not working !

Am I doing wrong? Or there are special naming rules for Angular directive?

like image 658
Zach Avatar asked Aug 01 '13 09:08

Zach


People also ask

Which are the Restrict type of NG directives?

The restrict option is typically set to: 'A' - only matches attribute name. 'E' - only matches element name. 'C' - only matches class name.

What are the three types of directives in Angular?

The three types of directives in Angular are attribute directives, structural directives, and components.


2 Answers

AngularJS attempts to make everyone happy!

Some people prefer to use data attributes, like data-abc-abc, I assume to keep validators happy. Other people prefer to use namespaces like abc:abc, and others prefer to use the actual directive name abcAbc. Or even all caps ABC_ABC. Or extension attributes like x-abc-abc.

AngularJS normalises the name used in HTML to attempt to cover all of these cases. data- and x- are stripped, the remainder camelcased with :, - and _ as word boundaries. This makes abcAbc from the cases mentioned above, which is used to look up the directive declared in JavaScript.

This is all called attribute normalisation (US: attribute normalization) and can be found in the AngularJS documentation and source code.

like image 106
Steve Klösters Avatar answered Oct 04 '22 09:10

Steve Klösters


You should use dash-separated names inside the html and camelCase for the corresponding name in the directive.

As you can read on the doc: Angular uses name-with-dashes for attribute names and camelCase for the corresponding directive name)

Here: http://docs.angularjs.org/tutorial/step_00

like image 31
AlwaysALearner Avatar answered Oct 04 '22 07:10

AlwaysALearner