モデルをディレクティブの属性にバインドしようとしています。
Javascript-
function Main($scope) {
$scope.text = "abc"
};
angular.module("myApp", [])
.directive("load", function ($compile) {
return {
restrict: 'E',
replace: true,
link: function (scope, element, attrs) {
console.log(attrs);
element.html(someFunction(attrs.text));
}
};
});
HTML-
<div ng-controller="Main">
<load text="Hello {{text}}"></load>
</div>
jsFiddleはここにあります。フィドルでは、私はを廃止しましたsomeFunction
。