1
以下のコードは、一度にすべての質問と選択肢を表示しますが、次のボタンをクリックした後に次の質問を表示する必要があります。ng-repeatを使用してボタンクリックに基づいてループする方法
<div ng-repeat="questionData in questionDatas">
<h4 ng-bind="questionData.question"></h4>
<div ng-repeat="choice in questionData.choices">
<div class="choice"><input ng-bind="choice" type="radio" ng-value="option" name="option"><label ng-bind="choice"></label></div>
</div>
<button ng-click="nextQuestion">Next</button>
</div>