Last Updated: September 09, 2019
·
859
· satish860

AngularJS Tip of the day - Getting Value from directive

There are situtation where you need to get value from the attribute aka Directive . This can be achieved in the link function of the attribute . Link function in directive provide you the current scope variable . From which by applying the $eval function can get you the value.

scope.$eval(attr.ngBind)  - This can get the value of the Ng-Bind directive