我有条目,他们的 json 对象看起来有点像这样
{
'id': 5,
'activityId': 1
}
然后我有活动,他们的 json 对象看起来像这样
{
'id': 1,
'name': 'Activity name',
'rate': 1200
}
现在我正在渲染这样的条目
<tr ng-repeat="entry in entries">
<td>
<activities></activities>
</td>
<td>
// here's supposed to be the rate
</td>
</tr>
其中活动是一个看起来像这样的指令
app.directive("activities", function() {
return {
restrict: 'E',
template: '<select ng-model="entry.activityId" ng-options="a.id as a.name for a in activities"></select>'
}
});
现在我需要做什么才能在我的 ng-repeat 中打印速率?因为它是指令内部某些东西的属性,但我需要将它打印在指令之外。
谢谢..