是否可以在 ngTagsInput 模板中调用范围方法?
Is it possible to invoke a scope method in the ngTagsInput template?
类似
<script id="tagTemplate" type="text/ng-template">
<div>
<span>{{$getDisplayText()}}</span>
<button ng-click='showDetails(data)'>More</button>
</div>
</script>
它刚刚实施,现在可以做到 $scope.showDetails(data)
。
类似
<script id="tagTemplate" type="text/ng-template">
<div>
<span>{{$getDisplayText()}}</span>
<button ng-click='showDetails(data)'>More</button>
</div>
</script>
它刚刚实施,现在可以做到 $scope.showDetails(data)
。