Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AngularJS : Differences among = & @ in directive scope? [duplicate]

Creating an isolate scope inside a directive lets us map the outer scope to the inner scope. We have seen six different ways to map to attrbutes:

  1. =attr
  2. &attr
  3. @attr
  4. =
  5. &
  6. @

What do each of these scope mapping options do?

like image 711
Shaun Luttin Avatar asked Feb 11 '14 20:02

Shaun Luttin


People also ask

What is difference between Angular AngularJS?

What is the difference between Angular vs AngularJS? One vital distinction between Angular vs AngularJS is AngularJS is JavaScript-based while Angular is TypeScript based. These two frameworks have similarities as a front end, open-source platform that create dynamic SPAs but let's look at their differences.

What is difference between TypeScript and AngularJS?

First of all, Angular is based on TypeScript while AngularJS is based on JavaScript. TypeScript is a superset of ES6 and it's backward compatible with ES5. Angular has also benefits of ES6 like: lambda operators, iterators or reflection's mechanism. AngularJS uses terms of scope and controller.

Is angular and AngularJS JS is same?

Angular is alternative to AngularJS and it is a major version upgrade to Angular JS. Angular release starts from 2.0. It is very fast as compared to AngularJS. It has modular design, have angular CLI and easy to develop.

Why is Angular better than AngularJS?

Each version of Angular has significant benefits, but there is much to gain in being up-to-date with the latest version. Angular is decidedly faster than AngularJS, has a mobile-driven approach, executes better with components, and enables smoother migration from earlier versions.


2 Answers

This can be confusing but hopefully a simple example will clarify it. First, let's separate model bindings from behaviors.

Here is a fiddle that should help tie things together: http://jsfiddle.net/jeremylikness/3pvte/

And explained ... if your directive looks like this:

<my-directive target="foo"/>  

Then you have these possibilities for scope:

{ target : '=' }  

This will bind scope.target (directive) to $scope.foo (outer scope). This is because = is for two-way binding and when you don't specify anything, it automatically matches the name on the inner scope to the name of the attribute on the directive. Changes to scope.target will update $scope.foo.

{ bar : '=target' }  

This will bind scope.bar to $scope.foo. This is because again we specify two-way binding, but tell the directive that what is in the attribute "target" should appear on the inner scope as "bar". Changes to scope.bar will update $scope.foo.

{ target : '@' }  

This will set scope.target to "foo" because @ means "take it literally." Changes to scope.target won't propagate outside of your directive.

{ bar : '@target' }  

This will set scope.bar to "foo" because @ takes it's value from the target attribute. Changes to scope.bar won't propagate outside of your directive.

Now let's talk behaviors. Let's assume your outer scope has this:

$scope.foo = function(parm1, parm2) { console.log(parm1 + ": " + parm2); }  

There are several ways you can access this. If your HTML is:

<my-directive target='foo'> 

Then

{ target : '=' }  

Will allow you to call scope.target(1,2) from your directive.

Same thing,

{ bar : '=target' } 

Allows you to call scope.bar(1,2) from your directive.

The more common way is to establish this as a behavior. Technically, ampersand evaluates an expression in the context of the parent. That's important. So I could have:

<my-directive target="a+b" /> 

And if the parent scope has $scope.a = 1 and $scope.b = 2, then on my directive:

{ target: '&' }  

I can call scope.target() and the result will be 3. This is important - the binding is exposed as a function to the inner scope but the directive can bind to an expression.

A more common way to do this is:

<my-directive target="foo(val1,val2)">  

Then you can use:

{ target: '&' } 

And call from the directive:

scope.target({val1: 1, val2: 2});  

This takes the object you passed, maps the properties to parameters in the evaluated expression and then calls the behavior, this case calling $scope.foo(1,2);

You could also do this:

<my-directive target="foo(1, val)"/> 

This locks in the first parameter to the literal 1, and from the directive:

{ bar: '&target' } 

Then:

scope.bar(5)  

Which would call $scope.foo(1,5);

like image 159
Jeremy Likness Avatar answered Oct 13 '22 01:10

Jeremy Likness


Summary

  1. @attr binds to a matching DOM attribute's evaluated string value.
  2. =attr binds to a matching DOM attribute's scope property.
  3. &attr binds to a matching DOM attribute's scope function.
  4. @
  5. =
  6. &

We use the 4, 5, and 6 if the target DOM attribute's name matches the isolate scope proprty name. Here is a working fiddle of the following example.

Html

<div ng-app='isolate'>      <h3>Outer Scope</h3>      <input type="text" ng-model="myModel" />     <p>msg: {{ msg }}</p>      <h3>Inner Scope</h3>      <div id="inner">         <div my-directive at="{{ myModel }}" equals="myModel" ampersand="msg=msg+'click'"></div>     </div> </div> 

Javascript

angular.module('isolate', [])     .directive('myDirective', function () {     return {         template:             '<label>@attr</label><input value="{{ myAt }}" />' +             '<label>@</label><input value="{{ at }}" />' +             '<label>=attr</label><input ng-model="myEquals" />' +             '<label>=</label><input ng-model="equals" />' +             '<label>&attr</label><input type="button" ng-click="myAmpersand()" value="Btn" />' +             '<label>&</label><input type="button" ng-click="ampersand()" value="Btn" />',         scope: {             myAt: '@at',             myEquals: '=equals',             myAmpersand: '&ampersand',             at: '@',             equals: '=',             ampersand: '&'         }     }; }); 
like image 36
Shaun Luttin Avatar answered Oct 13 '22 00:10

Shaun Luttin