HTML コード:
<div class="test">{{name}}</div>
角度コード:
var app = angular.module('angularjs-starter', []);
app.controller('MainCtrl', function($scope) {
$scope.name = 'World';
});
app.directive('test', function(){
return {
restrict: 'C',
link: function(scope, elm, attrs){
var content = elm.html();
alert(content);
}
}
});
文字列を警告します{{name}}
。レンダリングされた文字列を警告する方法はWorld
?