1
我試圖用角度js做一個測驗應用程序。 當用戶選擇正確答案時,我想在該項目內顯示一個圖標。 問題是該圖標是beign應用於列表中的每個項目。 我該如何解決這個問題?如何在angularjs中使用ng-repeat時顯示特定項目中的數據?
這裏的代碼
<md-radio-group ng-model="test.selected" ng-change="test.onChange(test.selected)">
<md-radio-button ng-repeat="item in test.items" value="{{item}}" class="md-accent" ng-click="test.validate($index)">
{{item}}
<md-icon class="material-icons md-secondary right" ng-show="test.isCorrect">done</md-icon>
<md-icon class="material-icons md-secondary wrong" ng-show="test.isNotCorrect">clear</md-icon>
</md-radio-button>
</md-radio-group>
這裏有一個plunker演示plunkr