How to get evaluated attributes inside a custom directive

I’m trying to get an evaluated attribute from my custom directive, but I can’t find the right way of doing it.

I’ve created this jsFiddle to elaborate.

<div ng-controller="MyCtrl">
    <input my-directive value="123">
    <input my-directive value="{{1+1}}">
</div>

myApp.directive('myDirective', function () {
    return function (scope, element, attr) {
        element.val("value = "+attr.value);
    }
});

What am I missing?

5 Answers
5

Leave a Comment