私はこの簡単なコードを持っています。問題は、"ng-switch-when"
表示されていないことです。つまり、column.stage
正しくレンダリングされていませんが、表示しようとする{{column.stage}}
と正しい値が表示されます (1 OR 2 OR 3...)
<div class="column span3" ng-repeat="column in columns">
<h1>{{column.title}}</h1>
<div class="row" ng-repeat="shot in shots" ng-switch on="shot.stage">
<h6 ng-switch-when="{{column.stage}}">{{shot.title}}</h6>
</div>
</div>