0

我正在尝试将 id 关联到 ng-repeat 循环中。有人可以建议我该怎么做吗?

这是代码

<li ng-repeat="agent in agents">
     <chart chart-id={{agent}}></chart>
</li>

注意:图表是我的指令。

4

1 回答 1

0

假设您的指令看起来像这样:

app.directive('chart', function() {
   return {
       restrict: 'E',
       replace: true,
       scope: {
           chartId: '='
       },
       template: '<div>Agent {{chartId.name}} reporting for duty</div>'
   }
}

您只需要更新您的代码,删除大括号并添加引号:

<li ng-repeat="agent in agents">
    <chart chart-id="agent"></chart>
</li>
于 2013-11-08T02:30:27.930 回答