我想将字符串传递给textAngular
,以便编译$ scope属性例如
$scope.text = "Hey {{person.name}}";
然后在HTML中我有
<div text-angular ng-model="text"></div>
我暂时为我的控制器组装了一个黑客。
$scope.$watch(function(){return $scope.text;}, function(html) {
$scope.text = $interpolate($scope.text)($scope);
});
如何将此hack转换为与textAngular配合使用的指令?
答案 0 :(得分:0)
我认为你应该做的是:
Cart::remove()
实际上,一旦将文本放在ngModel中,用户就可以更改文本。