使用 ng-bind 将值附加到翻译令牌

Append value to translation token with ng-bind

我正在尝试对一个元素进行 5 次迭代。为此,我使用带有 track by $index 的 ng-repeat。之后我想使用 $index 中的值添加到翻译标记中。此索引值附加到令牌,然后获取其正确的翻译。

在我当前的代码中:

<div class="col-xs-12" ng-repeat="x in [].constructor(5) track by $index">
<div class="col-xs-10">
    <span>{{$index}}</span>
    <label class="form">
        <span ng-bind-html="'FORM.TRANSLATION_TOKEN_$index' | translate"></span>
    </label>
</div>
...                             
</div>

我得到了所有带有 FORM.TRANSLATION_TOKEN_$index 的字段,这意味着它没有得到正确的翻译。

我要的是FORM.TRANSLATION_TOKEN_0个翻译。

知道如何进行这项工作吗?

试试这个:

...
<span ng-bind-html="'FORM.TRANSLATION_TOKEN_' +$index | translate"></span>
...