我想将字符串传递给textAngular
以便编译 $scope 属性例如
$scope.text = "Hey {{person.name}}";
然后在我的HTML中
<div text-angular ng-model="text"></div>
我暂时为我的控制器组装了一个 hack。
$scope.$watch(function(){return $scope.text;}, function(html) {
$scope.text = $interpolate($scope.text)($scope);
});
如何将这个 hack 变成一个与 textAngular 配合得很好的指令?