1

私はこの簡単なコードを持っています。問題は、"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>
4

1 に答える 1

0

次のような独自の要素に ng-switch on="shot.stage" を配置する必要があります。

<div class="column span3" ng-repeat="column in columns">
    <h1>{{column.title}}</h1>
    <div class="row" ng-repeat="shot in shots">
        <div ng-switch on="shot.stage">
          <h6 ng-switch-when="{{column.stage}}">{{shot.title}}</h6>
        </div>
    </div>
</div>
于 2012-12-03T11:10:52.573 に答える