跟进这个问题:AngularJS data bind in ng-bind-html?
如果我要插入的值附加到 ng-repeat 创建的范围怎么办?
myDict = {'Suggestion' : $interpolate('Vote here if you think {{player.name}} is right!')($scope)
...};// $scope is wrongly passed here as 'player' is not a scope variable,
进而
<div ng-repeat="player in players">
<span ng-bind-html="myDict['Suggestion']"></span>
</div>
没有自定义指令可以做这样的事情吗?